The inxi utility is very useful utility for getting summary of hardware which is available in your machine. You can install this Utility as below. 1. Download the Utility using wget command as below. # wget -O inxi smxi.org/inxi # Read More …
Author: S. Sharad
AutoFS Server In Linux
The autofs server is very useful server. It automatically mounts the drive when you enter in respective mount point folder and the devices automatically gets unmounted if you are not using them for defined time. Below are the steps to Read More …
Software Installation In Linux Using yum Tool
Please check following link to download the PowerPoint File. Download File
Configuring Apache Server In CentOS 7
The Apache HTTP Server is powerful open-source HTTP server for modern operating systems including UNIX and Windows. The Apache HTTP Server (“httpd”) was launched in 1995. The Apache HTTP Server is a project of The Apache Software Foundation. Below are Read More …
Xen Server – Adding ISO Repository
After initial installation of Citrix Xen Server, you are supposed to add ISO repository for installation of VM. Below are the steps to do so. # mkdir /home/iso # xe sr-create name-label=ISO-Repo type=iso device-config:location=/home/iso device-config:legacy_mode=true content-type=iso After putting this commands Read More …
HowTo check which Hypervisor is used in Linux VM?
If you are using CentOS Linux then install following software and run the next command. # yum install virt-what -y after this installation run # virt-what
Linux Video Tutorials
I have created some Basic Easy Linux Video Tutorials. You can take a look at them. Just click below link. Linux Video Docs
Installing NTFS Support In CentOS 7
Below are the step to add NTFS File System Support in CentOS Linux. # yum install epel-release -y # yum update -y # yum install ntfs-3g ntfsprogs -y This add NTFS File System Support in your Linux Machine.
HowTo Set root password in MariaDB
If you are root login then issue following command to set root password of MariaDB Server. # /usr/bin/mysql_secure_installation Make sure that you should have working root password of MariaDB.
HowTo Install DLib in Python3.7 On CentOS 7
The dlib Module requires gcc version higher than 4.8. Default CentOS 7 comes with 4.8 as latest version. Using Developer Tool Set you can install higher version of gcc in another folder (Say /opt) and your compilation will be higher Read More …