Tag: Kali Linux

How to delete Wi-Fi network settings in Linux

Table of contents 1. Deleting Wi-Fi network settings in Linux 2. How to delete Wi-Fi settings in Linux Mint (Cinnamon) 3. How to delete Wi-Fi settings in Ubuntu and Kali Linux (GNOME 3) 4. How to delete Wi-Fi settings in Xubuntu (Xfce) 5. How to remove Wi-Fi settings in Kubuntu and Manjaro (KDE) 6. How to open the Connection Editor...

How to view the password for a Wi-Fi connection in Linux

Table of contents 1. Is it possible to view the password for a Wi-Fi network in Linux 2. How to view a Wi-Fi password in Linux Mint (Cinnamon) 3. How to view a Wi-Fi password in Ubuntu and Kali Linux (GNOME 3) 4. How to view a Wi-Fi password in Xubuntu (Xfce) 5. How to view the Wi-Fi password in...

How to disable automatic Wi-Fi connection without deleting settings in Linux

Table of Contents 1. Is it possible to disable automatic connection to Wi-Fi in Linux 2. How to disable automatic connection to Wi-Fi in Linux Mint (Cinnamon) 3. How to disable automatic connection to Wi-Fi in Ubuntu and Kali Linux (GNOME 3) 4. How to disable automatic connection to Wi-Fi in Xubuntu (Xfce) 5. How to disable automatic Wi-Fi connection...

How to prioritize Wi-Fi connections in Linux

Table of contents 1. Is it possible to configure the priority of Wi-Fi networks in Linux 2. How to prioritize Wi-Fi connections in Linux Mint (Cinnamon) 3. How to prioritize Wi-Fi connections in Ubuntu and Kali Linux (GNOME 3) 4. How to prioritize Wi-Fi connections in Xubuntu (Xfce) 5. How to prioritize Wi-Fi connections in Kubuntu and Manjaro (KDE) 6....

How to install Python as a CGI module in Apache on Linux

Table of contents 1. How to run a Python script on a web server 2. How to set up Python as a CGI module in Apache on Debian (Ubuntu, Linux Mint, Kali Linux) 2.1 Setting up Python CGI for a single directory 2.2 Setting up Python CGI for the entire web server 3. How to set up Python as a...

How to set up Python as a CGI module in Apache on Debian (Ubuntu, Linux Mint)

Setting up Python CGI for a single directory Run the command to enable the CGI module: sudo a2enmod cgi Restart the web server for the changes to take effect: sudo systemctl restart apache2 Create file /usr/lib/cgi-bin/test.py: sudo gedit /usr/lib/cgi-bin/test.py Copy the following content to this file: #!/usr/bin/python3 print ("Content-type: text/html") print ("") print ("") print ("<html><head>") print ("") print ("</head><body>")...

How to update the GRUB bootloader on Debian and derivative distributions (Kali Linux, Ubuntu, Linux Mint)

The GRUB operating system loader is installed and updated on Linux like any other software package. But the peculiarity of the bootloader is that even after updating the package, the actual working files of the bootloader, which are located on the partition mounted along the /boot/grub/ path, are not automatically updated. That is, when new versions of GRUB are released,...

Error “No such file or directory: AH02454: FCGI: attempt to connect to Unix domain socket /run/php/php8.1-fpm.sock (*:80) failed” (SOLVED)

Debian and derivative distributions (Ubuntu, Linux Mint, Kali Linux, and many others) may experience a “FCGI: attempt to connect to Unix domain socket /run/php/php8.1-fpm.sock (*:80) failed” error when migrating from PHP 8.1 to PHP 8.2. Apache web server log sudo tail /var/log/apache2/error.log contains the following error messages: [Sun Jan 29 03:05:45.213609 2023] [proxy:error] [pid 1313500] (2)No such file or directory:...
Loading...
X