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

How to set up FreeBSD 12 VNET jail with ZFS

Here are the general steps to set up a VNET jail on FreeBSD 12 using ZFS: Create a ZFS dataset for the jail: zfs create -o mountpoint=/jails zpool/jails/jailname Create the jail with VNET enabled: jail -c name=jailname host.hostname=jailname vnet vnet.interface=igb0 Install the base system in the jail: jail -m path=/jails/jailname name=jailname /usr/sbin/jail -i Configure the … 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 will need to install the firmware-iwlwifi package. Try running the following command as root: apt-get update && apt-get install firmware-iwlwifi Then reboot the system. Alternatively, you can download the package from the official Debian package repository and install … Read more

How to find NetworkManager version on Linux

networkmanager –version and nmcli -v are command line instructions that can be entered into the terminal on a Linux system. They are used to display the version number of NetworkManager that is currently installed on the system. NetworkManager is a service that manages network connections on Linux and Unix-like systems. When you enter the command … Read more