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' tells you more about the output.
R.