Crontab & Its issues
October 5th, 2009
No comments
find /var -size -8k
- You can check whether running or not , check it by using ps ax | grep crond
- If it’s not running at start up, add it into /etc/rc.local then at it into /etc/init.d/crond start
- edit your crontab using command crontab -e
- list of your crontab using crontab -l
- if you found unable to save because not enough disk space at your linux OS, then check it using df -i or df -h
- find your below 8k files using find /var -size -8k , then delete it using find {trouble directory} -size -8 -exec rm -f {} ;
Recent Comments