How to install Go [golang] on Ubuntu Linux

To install Go (Golang) on Ubuntu Linux, you can follow these steps: Download the latest version of Go from the official website by running the following command: wget https://golang.org/dl/go1.x.linux-amd64.tar.gz Extract the downloaded archive by running the following command: tar -xvf go1.x.linux-amd64.tar.gz Move the extracted folder to the ‘/usr/local’ directory by running the following command: sudo … Read more

How to install MySQL server on CentOS 8 Linux

To install MySQL server on CentOS 8, follow these steps: Start by enabling the MySQL module by running the following command: sudo dnf module enable mysql:8.0 Next, install the MySQL server package by running the following command: sudo dnf install mysql-server After the installation is complete, start the MySQL service and enable it to start … Read more

How to enable rc.local shell script on systemd while booting Linux system

To enable an rc.local shell script on a systemd-based Linux system during boot, you can follow these steps: Create a file named “rc-local.service” in the “/etc/systemd/system” directory. Open the file in your text editor and paste the following content: [Unit] Description=/etc/rc.local compatibility [Service] Type=forking ExecStart=/etc/rc.local start TimeoutSec=0 StandardOutput=tty RemainAfterExit=yes SysVStartPriority=99 [Install] WantedBy=multi-user.target Make the file … Read more

How to install VirtualBox on Ubuntu 20.04 Linux LTS

To install VirtualBox on Ubuntu 20.04 LTS, follow these steps: Add the VirtualBox repository to your system by running the following command in the terminal: sudo add-apt-repository “deb [arch=amd64] https://download.virtualbox.org/virtualbox/debian focal contrib” Download and add the Oracle public key for apt-secure using the following command: wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add – Update … Read more

How to restart CentOS or RHEL server safely

The “shutdown -r now” command is used to safely reboot a CentOS or RHEL server. The “-r” flag indicates that the system should reboot after shutting down all processes. The “now” argument tells the system to initiate the shutdown and reboot immediately. Before running the command, it’s a good practice to check if there are … Read more

How to configure Intel Wifi on Debian Linux when you get firmware: failed to load iwlwifi-8265-36.ucode error

To fix the “firmware: failed to load iwlwifi-8265-36.ucode” error when configuring Intel WiFi on Debian Linux, you can try the following steps: Make sure that the non-free firmware package is installed by running apt-get install firmware-iwlwifi If the package is already installed, try reinstalling it by running apt-get –reinstall install firmware-iwlwifi If step 1 and … Read more

OpenSUSE install Brotli module for Nginx

To install the Brotli module for Nginx on OpenSUSE, you will need to first add the Nginx repository to your system by running the following command: sudo zypper addrepo -f https://nginx.org/packages/opensuse/15/x86_64/ nginx Then, you can install the Nginx package with the Brotli module included by running: sudo zypper install nginx-module-brotli After that, you will need … Read more