From owner-freebsd-questions@FreeBSD.ORG Mon May 24 22:08:25 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A3F416A50D for ; Mon, 24 May 2004 22:08:25 -0700 (PDT) Received: from auk1.snu.ac.kr (auk1.snu.ac.kr [147.46.100.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A11C43D2F for ; Mon, 24 May 2004 22:08:25 -0700 (PDT) (envelope-from stopspam@users.sourceforge.net) Received: from [147.46.44.181] (stopspam@users.sourceforge.net) by auk1.snu.ac.kr (Terrace Internet Messaging Server) with ESMTP id 2004052513:49:53:903116.24301.2697460656 for ; Tue, 25 May 2004 13:49:53 +0900 (KST) Message-ID: <40B2D49D.5000906@users.sourceforge.net> Date: Tue, 25 May 2004 14:07:41 +0900 From: Rob User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.6) Gecko/20040507 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Chris Collins , freebsd-questions@freebsd.org References: <20040525045422.M91680@collins-ca.com> In-Reply-To: <20040525045422.M91680@collins-ca.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-TERRACE-SPAMMARK: NO (SR:5.63) (by Terrace) Subject: Re: UsersFiles and Quota X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 May 2004 05:08:25 -0000 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.