Home / Archive for August 2021 / Page 2

Month: August 2021

How to install the NVIDIA proprietary driver on AlmaLinux and CentOS

Download the latest GPU driver from the NVIDIA driver download page. Make the driver file that you have just downloaded executable by entering the following command. chmod +x /root/NVIDIA-${version}.sh Disable the nouveau module; echo 'blacklist nouveau' >> /etc/modprobe.d/blacklist.conf Install dependencies by replacing the server with GUI to the workstation. dnf groupinstall "Server with GUI" "base-x" …

Read more

How to install Nvidia CUDA on AlmaLinux 8 and CentOS

Remove the currently installed driver from your AlmaLinux server if installed using CUDA toolkit runfile. /usr/local/cuda-X.Y/bin/cuda-uninstall If you have used the NVIDIA driver runfile for installation, use the following command for uninstallation. /usr/bin/nvidia-uninstall Add EPEL repository, dnf install epel-release Run the update command to let the system rebuild the repository cache. After updating, you will …

Read more

How to restart network in AlmaLinux and CentOS 8

You can restart the network in AlmaLinux 8 by using two methods. The preferred one using nmcli is given below. nmcli networking off && nmcli networking on The second method is to install legacy network services as below. yum install network-scriptsservice network restart Using the second method, you will get the following warning messages in …

Read more