Nicole Carlson <[EMAIL PROTECTED]> writes:

> Hi everyone
> 3) Any tools out there to keep an eye on my disk space situation for me?

# find all large files, change 1000 to suit taste
find / -size +1000 -exec ls -l {} \; 

# find out which directory/file has the most stuff/is biggest
du -s * | sort -rn 

Either of these combined with cron or perl glue should be able to
provide you with an idea of what's happening.  

Your distro's cron doesn't mail you a df output every night?

-Ricardo

Reply via email to