* Didar Hossain <didar.hossain at gmail.com> [2009-10-10 14:44 +0530]: > Time to check for the largest disk eating directories - > > sudo du -sh /var/* A tip for when looking for space hogs: $ du -cks * | sort -rn | head -n11 Summarizes the report if you will. I have it aliased as 'ducks'. Gleaned from _UNIX Power Tools_.