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 …
Category: CentOS-7
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 …
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.
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 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 …
Check SHA256 (256-bit) Checksums
Using sha256sum command in Linux you can check SHA 256 Bit Checksum. Below are the steps. Suppose you have setup.exe file then you can check the SHA 256 Bit Checksum as below. # sha256sum setup.exe b7e8dabcaf825a65085564a63791355f37a18d5df5b3da71d4c0002ee40522f6 setup.exe The text “b7e8dabcaf825a65085564a63791355f37a18d5df5b3da71d4c0002ee40522f6” Read More …