There are two ways to gather information about CPU in Linux. 1. You can check file /proc/cpuinfo to CPU information as below. You may see following output which contains most vital information about CPU. # cat /proc/cpuinfo processor : 0 Read More …
Month: February 2019
Listing PCI devices in Linux
There are many devices in Linux that follow PCI architecture. You can gather list of all such devices using lspci command in linux. Below is a step by step guide. 1. You should install pciutils software first. # yum install pciutils -y Read More …
Howto install PHP 7.2 in CentOS 7 ?
Before you install PHP 7.2, please make sure that your yum tool is properly configured and working. Below are the simple steps to install PHP 7.2 in CentOS 7. 1. Install EPEL repo. # yum install epel-release -y 2. Install Remi Read More …
AutoFS Server : Mounting File System Automatically
In Linux OS, you mount the drives automatically with autofs Server. This server is very simple to configure. The basic idea behing this is Just go to the assigned folder for that drive and it will automatically gets mounted and it will Read More …