Automatically clean tmp folder

Many people have query that how to automatically clean tmp folder.  I’ve made a simple script to do this task effortlessly. 1 2 3 4 5 6 7 #!/bin/bash for i in `/bin/ls -1 /tmp | egrep -v "eaccelerator|mysql.sock|lost+found|CleanTmp.sh"`; do rm -rfv /tmp/"$i"; done ;   /etc/init.d/httpd restart; /etc/init.d/mysql restart …

iptables

Using Iptables on Linux

Using Iptables on Linux  Overview  Iptables is a rule-based firewall, which will process each rule in order until it finds one that …

telnet connection refused error

telnet connection refused error, If you are getting the error below while doing telnet to localhost to some port, telnet: connect to address …

best_email_apps

Best email client for Andriod

Best email client for Andriod, If you have been using an android phone then you must have definitely accessed the default Gmail APP …

Install VIM editor

Vim, or VI enhanced, is the successor of the famous vi editor which is found almost in every Linux distribution even on …

Change FTP port

In many cases you don’t want to allow default FTP port which is 21 and need to change FTP port on different …

Large eximstats Database

If your server is having large eximstats database then you can delete the tables in the eximstats folder to free up the space.  In …