Tag: Linux Mint

ERR_SSL_PROTOCOL_ERROR (SOLVED)

Contents 1. Why does the ERR_SSL_PROTOCOL_ERROR occur 2. How to fix the ERR_SSL_PROTOCOL_ERROR 3. How to fix “ERR_SSL_PROTOCOL_ERROR” on a local web server 4. How to configure HTTPS on Apache in Linux 4.1 How to install Apache and OpenSSL on Debian, Ubuntu, Linux Mint, Kali Linux 4.2 How to enable the SSL module for Apache 4.3 How to make a local...

Error code: SSL_ERROR_RX_RECORD_TOO_LONG (SOLVED)

Contents 1. Why does the SSL_ERROR_RX_RECORD_TOO_LONG error occur 2. How to fix the SSL_ERROR_RX_RECORD_TOO_LONG error 3. How to fix “Error code: SSL_ERROR_RX_RECORD_TOO_LONG” on a local web server 4. How to configure HTTPS on Apache in Linux 4.1 How to install Apache and OpenSSL on Debian, Ubuntu, Linux Mint, Kali Linux 4.2 How to enable the SSL module for Apache 4.3 How...

How to set up HTTPS on Apache in Debian, Ubuntu, Linux Mint, Kali Linux

Contents How to enable HTTPS on Apache in Debian, Ubuntu, Linux Mint, Kali Linux How to install Apache and OpenSSL on Debian, Ubuntu, Linux Mint, Kali Linux How to enable the SSL module for Apache How to make a local server open by hostname (setting up hostname to IP address resolution) How to create a Certification Authority (CA) How to...

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 switch from PulseAudio to PipeWire

What is PipeWire PulseAudio is an audio service that allows you to stream audio locally and over the network. Since 2020, it has gradually begun to be replaced by PipeWire, which manages the mixing of various sources and their distribution to various outputs. Since arriving on the scene in 2017, PipeWire was seen as a strong contender to replace PulseAudio, but...

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>")...
Loading...
X