How To Remove APF Firewall

APF is highly powered firewall which helps you in defining Iptable rules on your server. If you are sure to remove the APF from your system, below are the steps: Remove APF # /etc/init.d/apf stop # chkconfig apf off # rm -rf /etc/apf # rm -f /etc/rc.d/init.d/apf # rm -f /etc/logrotate.d/apf # rm -f /etc/cron.daily/apf…

mount umount

How to mount and unmount a drive in linux

Mounting refers to logically attaching a device/drive (such as cd drives, usb, floppy drive, hard disk, etc.) to a specified location on currently accessible filesystem(s), so that its content can be accessible. Mounting can be done with the mount command. You need to tell mount command what device or the partition needs to be mount…

Usage of “free” command in linux

Monitoring is most important for every LINUX administrator and necessary for troubleshooting. While working on system/servers some times you feel your system responding late and is actually slow. This is normally because of the high load on system or your system is running out of memory. This article will helps you in monitor physical and…