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.
Author: S. Sharad
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 …
Controlling hostname in Linux – hostnamectl
Hostname is a name given to machine. You can check the machine’s hostname using following command. # hostname Using the same command you can set hostname also. # hostname station1.example.com Basically Linux maintains host in /etc/hostname file. You can edit Read More …
Redirecting Tomcat Port 8443 to Port 80 For CentOS 7
It is very simple process using iptables firewall. Below is a single step. # iptables -t nat -A PREROUTING -p tcp –dport 443 -j REDIRECT –to-port 8443 All request coming on port 443 are forwarded to Port 8443 of Tomcat. Read More …
SSL Certificate Installation On Tomcat For CentOS7
Below are the steps. Here we are using Let’s Encrypt SSL Certificate to secure the Tomcat Server. For this example, I am using demo.ssharad.com as domain name for Tomcat. Before I move ahead, please make sure that your server must Read More …
Installing Apache Tomcat On CentOS 7
Below are the steps. 1. Install OpenJDK for java as below. # yum install java-1.8.0-openjdk -y 2. Check Java # which java # java -version openjdk version “11.0.12” 2021-07-20 LTS OpenJDK Runtime Environment 18.9 (build 11.0.12+7-LTS) OpenJDK 64-Bit Server VM Read More …
Xen Server – Set Up an Additional Hard Drive
Below are steps 1. Using SSH Login to your server. You can use putty software to login to server from Windows Machine. 2. For example : Consider you wish to add /dev/sdb drive which is newly attached to system. If Read More …
My YouTube Channel Url
You can visit to my YouTube Channel by clicking following link. MyChannel
Installing htop Command on CentOS 7
htop is an interactive text-mode process viewer for Linux. On CentOS 7, you can install as below. Step 1 : Download htop # wget http://download-ib01.fedoraproject.org/pub/epel/7/x86_64/Packages/h/htop-2.2.0-3.el7.x86_64.rpm Step 2 : Install htop # yum localinstall htop-2.2.0-3.el7.x86_64.rpm Step 3 : Now run htop Read More …