Re: UsersFiles and Quota

2004-05-25 Thread Uwe Doering
Chris Collins wrote: Hello All Is there a way to list files on my system that belong to a certain user. I have quotas enabled and cannot find out where all the space is being used. With quotas enabled this should be easy. Use 'repquota' and sort the list by allocated disk space: repquota -u

Re: UsersFiles and Quota

2004-05-25 Thread Mat Kovach
* [EMAIL PROTECTED] [2004-05-24 23:58:30 -0500]: Is there a way to list files on my system that belong to a certain user. I have quotas enabled and cannot find out where all the space is being used. man find something like : find / -type ff -userusername username_files should work for you.

UsersFiles and Quota

2004-05-24 Thread Chris Collins
Hello All Is there a way to list files on my system that belong to a certain user. I have quotas enabled and cannot find out where all the space is being used. Thanks Chris ___ [EMAIL PROTECTED] mailing list

Re: UsersFiles and Quota

2004-05-24 Thread Rob
Chris Collins wrote: Hello All Is there a way to list files on my system that belong to a certain user. I have quotas enabled and cannot find out where all the space is being used. This may work for you: find / -user foobar -exec du {} \; Replace foobar by any username on the system. 'man du'

Re: UsersFiles and Quota

2004-05-24 Thread Michal Pasternak
Chris Collins [Mon, May 24, 2004 at 11:58:30PM -0500]: Is there a way to list files on my system that belong to a certain user. I have quotas enabled and cannot find out where all the space is being used. Common procedure is to read the docs before asking! :) man find, EXAMPLES section, 2nd