[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] Site Usage Value
- Subject: Re: [cobalt-users] Site Usage Value
- From: "Jens-Peter Otto" <jp.otto@xxxxxxxxxxxxxxx>
- Date: Tue Mar 25 01:59:00 2003
- List-id: Mailing list for users to share thoughts on Sun Cobalt products. <cobalt-users.list.cobalt.com>
>
> >>do a "find / -group site14" as root from the
> >>command line. There might be files in /tmp or one
> >>of the users has quite a lot of mail. If you grant
> >>shell access the users can put files "everywhere",
> >they can however not (that easily) fool the quota ;-)
>
> I executed the find command as u said this is the
> result.
>
> server [root /root]# find / -group site14
> /var/spool/mail/usradmin
> /home/spool/mail/usradmin
>
so what's the size of that file (it is actually the same file, one is a symbolic link to the other).
There should show up several more files, most of them however in /home/sites/site14. I guess you got them covered?
To see the filesizes right away you could change the above command to
"find / -group site14 -exec du -k \{\} \;"
and beware, the command might take quite some time to walk through your whole filesystem.
Jens-Peter