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" …
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 …
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 …
How to unmount Network file Server (NFS) mount quickly when the NFS server is offline
The recommended solution is to use soft, timeo (deciseconds), and retrans options. soft option for mount command should be used if client responsiveness is favored over data integrity. Suppose applications utilizing NFS data can handle the IO error produced by soft mount, than it is ok to use. Other options like timeo and retrans options …
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 …
How to find the biggest files in filesystem – Linux, UNIX, HP-UX
Disk space issues are the most common problems raise in the day-to-day life of Linux system admin. So in this article, you can find out the commands to find out the largest files in your file system which are causing problems for the filesystem. Find for Large Files under Specific Mountpoint find /var -xdev -type …
Linux Interview Questions From Real Interviewer

Before we start a technical side, I think the first step to winning an interview is to go through with few things that will help you succeed. Analyzing The Position It would be best if you began with a systematic review of the job description. Your objective is to collect as much information as possible …
What is Web Host Manager (WHM) & what can you do with it
If you are a website owner or reseller you may have heard of WHM but may not be familiar with its features and how to use it effectively. This post provides an in-depth explanation of WHM’s primary functions and features. What is WHM? The WebHost Manager (WHM) interface has been specially built for hosting providers …
How to reset PTR/rDNS records in cPanel WHM (Web Host Manager)
If issue arises in email delivery about wrong PTR/rDNS record than click the following option in Exim configuration manager. Rebuild Reverse DNS Cache and Update Mail HELO This setting updates the reverse DNS cache and user domains for mail HELO. This setting only appears when you enable the Use the reverse DNS entry for the …
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 …
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 …
How to configure Cisco ASA 5545-X & Nexus Switch 3064-X
This guide typically sets up Cisco ASA 5545-X and Nexus Switch 3064-X in a data center environment. The data center operator will usually give you a single internet RJ45 cable to connect to your first network device for internet connectivity. As shown in diagram 1, the first network device is ASA 5545-X which is then …
Nvidia RTX 3080 Ti is available online right now

The Nvidia RTX 3080 Ti has been released and available for lucky enough to find one. Announced earlier this week alongside the forthcoming RTX 3070 Ti, the 3080 Ti serves as the costly successor to the GeForce RTX 3080, a great graphics card that made 4K gaming affordable. Nvidia RTX 3080 Ti has an impressive …
Nvidia nerfing RTX 3080Ti, 3070Ti, 3060Ti for cryptocurrency mining
How to repair filesystem in rescue environment CentOS 8 & CentOS 7?
Your Linux server may not load after boot and requests fsck of the root filesystem. If this happens server filesystem goes into read-only mode. When prompted for language, and keyboard, provide the pertinent information for the system. Boot your server from CentOS ISO image and select rescue mode at the boot command prompt. When prompted …