I have created some Basic Easy Linux Video Tutorials. You can take a look at them. Just click below link. Linux Video Docs
Month: December 2021
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 …