ERROR: Test failed: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1091)

The error message [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1091) typically occurs when the SSL certificate of the server you are trying to connect to cannot be verified. This can happen for a number of reasons, including: The certificate is self-signed, and the certificate authority (CA) that issued it is … Read more

How to install htop on Arch Linux

In Arch Linux, you can install htop by using the package manager pacman. Here are the steps you can follow: Start by updating the package list by running the following command: sudo pacman -Sy Next, you can install htop by running the following command: sudo pacman -S htop Once the installation is complete, you can … Read more

How to install KVM on Ubuntu 20.04 LTS Headless Server

KVM (Kernel-based Virtual Machine) is an open-source virtualization technology that allows you to run multiple virtual machines on a single physical server. Here’s how you can install KVM on an Ubuntu 20.04 LTS headless server: First, update the package repository by running the command “sudo apt update” Next, install the KVM package and other required … Read more

Squid test config file for syntax errors

In Squid, you can test the configuration file for syntax errors by using the squid -k parse command. Here are the steps you can follow: Open a terminal window and navigate to the directory where the Squid configuration file is located. Run the following command to test the configuration file for syntax errors: squid -k … Read more

How to install less on CentOS / RHEL / Fedora

In CentOS, Red Hat Enterprise Linux (RHEL), and Fedora, you can install less by using the package manager yum. Here are the steps you can follow: Start by updating the package list by running the following command: sudo yum update Next, install less by running the following command: sudo yum install less Once the installation … Read more