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
- [vox-tech] I can't be out of space; I have inodes left! Nicole Carlson
- Re: [vox-tech] I can't be out of space; I have inod... Ricardo Anguiano
- Re: [vox-tech] I can't be out of space; I have ... Nicole Carlson
- Re: [vox-tech] I can't be out of space; I have inod... Peter Jay Salzman
- Re: [vox-tech] I can't be out of space; I have inod... Peter Jay Salzman
- Re: [vox-tech] I can't be out of space; I have inod... Peter Jay Salzman
