Explains how to install man pages and man command on a RHEL/Oracle/Scientific/CentOS Linux version 6 or 7.
Missing man pages on a CentOS Linux 6/7 VM/LXD container? Here is how to install it.
seen from Netherlands
seen from Uzbekistan

seen from Egypt
seen from Russia

seen from France

seen from Malaysia

seen from Malaysia
seen from United States

seen from United States
seen from Denmark
seen from Germany
seen from United States
seen from United States
seen from China
seen from Greece
seen from Egypt

seen from United States
seen from France

seen from Malaysia

seen from Malaysia
Explains how to install man pages and man command on a RHEL/Oracle/Scientific/CentOS Linux version 6 or 7.
Missing man pages on a CentOS Linux 6/7 VM/LXD container? Here is how to install it.
SELinux modes - Simple explanation
SELinux modes – Simple explanation
Everyone who uses linux might be familiar with SELinux. The full form of SELinux is Security-Enhanced Linux. It is a kernel level security module that enhances the access level security policies.
In this post I will be quickly explaining about the various modes in SELinux.
There are three modes in SELinux
Enforcing
Permissive
Disabled
In CentOS and RHEL systems , the SELinux configurations are…
View On WordPress
Linux command to check the disk utilization and size of directory or file
Linux command to check the disk utilization and size of directory or file
Command to check the disk utilization
df -h
The ‘-h’ option will provide the utilization in human readable format.
Command to check the size of a directory
du -sh <directory name>
Command to check the size of a file
du -sh <file name>
Command to check the size of files in a directory
Go inside the directory and execute the following command
du -sh *
View On WordPress