Tag: Manjaro

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....

Error: failed to commit transaction (conflicting files) (SOLVED)

When performing updates on Arch Linux and derivative distributions (Manjaro, BlackArch), several checks are performed before directly installing new versions of packages: checking if all necessary dependencies are present checking if there are conflicting packages The previous two checks are performed before the installation files are downloaded. Immediately after downloading the installation files (but, of course, even before installing them),...

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 Arch Linux (Manjaro, BlackArch)

Setting up Python CGI for a single directory Create a directory /srv/http/cgi-bin/ - this is where the Python scripts will be located: sudo mkdir /srv/http/cgi-bin/ Open the /etc/httpd/conf/httpd.conf file – the web server configuration file: sudo gedit /etc/httpd/conf/httpd.conf Find a group of lines: <Directory "/srv/http/cgi-bin"> AllowOverride None Options None Require all granted </Directory> And replace it with: <Directory "/srv/http/cgi-bin"> AllowOverride...

PHP Warning: PHP Startup: imap: Unable to initialize module (SOLVED). How to install the imap module for PHP on Arch Linux

When running a PHP script in Arch Linux or derivative distributions (Manjaro, BlackArch) on the command line: php 8.php You may see the following warning from PHP: PHP Warning: PHP Startup: imap: Unable to initialize module Module compiled with module API=20210902 PHP compiled with module API=20220829 These options need to match in Unknown on line 0 Warning: PHP Startup: imap:...

phpMyAdmin error “Error: Undefined constant “SODIUM_CRYPTO_SECRETBOX_KEYBYTES”” (SOLVED)

On Arch Linux, when trying to use the phpMyAdmin 5.3 pre-release, I encountered an error: Error: Undefined constant "SODIUM_CRYPTO_SECRETBOX_KEYBYTES" Checking in Debian showed that there is no such problem with phpMyAdmin 5.3. The reason for the error is that sodium support is not enabled. How to enable sodium on Arch Linux (Manjaro, BlackArch) To enable sodium support in Arch Linux...

Errors “Incorrect definition of table mysql.event: expected column ‘definer’ at position 3 to have type varchar(, found type char(141)” and “Event Scheduler: An error occurred when initializing system tables. Disabling the Event Scheduler” (SOLVED)

When upgrading mariadb to version 10.8.3, the following messages were shown: warning: directory permissions differ on /usr/lib/mysql/plugin/auth_pam_tool_dir/ filesystem: 700 package: 755 :: MariaDB was updated to a new feature release. To update the data run: systemctl restart mariadb.service && mariadb-upgrade -u root -p They contain information about two events that require the action of a system administrator or user. The...
Loading...
X