Anurag Jalan wrote:
> Is there a utility that can help me locate the space hogs ?
check out the find command. something like
find /home -size +1000k
would return a list of files begining at the /home directory that are greater
than 1MB.
or now that I have done some digging, try
du -sh /home/*
Should summarize the size of all files in each users' home directories. You
will need to be root to descend into everyones directories.
Bret
--
To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe"
as the Subject.