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 Nullify a log file in Linux

At this point, you already have the file which is causing the problem and you want to nullify it so just do as; #cat <logfile.Name> | gzip -v9 > (logfile).(date-time) # cat lastlog | gzip -v9 > lastlog.300721-0648 #cat /dev/null > lastlog or # cp /var/adm/syslog/syslog.log /var/adm/syslog/syslog.log.bak # gzip /var/adm/syslog/syslog.log.bak # cp /dev/null /var/adm/syslog/syslog.log #cat …

Read more

WordPress Security Tips

wordpress security tips

What is WordPress? WordPress is a free and open-source web creation platform. It is written in PHP and paired with an MYSQL and MariaDB database. It has a template system and a plugin architecture, which is referred to within WordPress themes. WordPress is an excellent website platform for numerous websites. WordPress is a versatile content …

Read more

PHP Vs Python – Comparison between both Languages

Scripting Languages Scripting languages are becoming progressively popular in web application programming in the last few years. Now in this article trying to compare popular languages nowadays: PHP and Python. The languages will be compared regarding history, evolution, popularity, syntax, features, security, and enactment in web application locations. A final thought will Conclude and recommends …

Read more