From owner-freebsd-fs@FreeBSD.ORG Sat Mar 24 16:34:25 2007 Return-Path: X-Original-To: freebsd-fs@freebsd.org Delivered-To: freebsd-fs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 983D116A400 for ; Sat, 24 Mar 2007 16:34:25 +0000 (UTC) (envelope-from gpalmer@freebsd.org) Received: from noop.in-addr.com (noop.in-addr.com [208.58.23.51]) by mx1.freebsd.org (Postfix) with ESMTP id 70D6E13C487 for ; Sat, 24 Mar 2007 16:34:25 +0000 (UTC) (envelope-from gpalmer@freebsd.org) Received: from gjp by noop.in-addr.com with local (Exim 4.54 (FreeBSD)) id 1HV9CB-00056z-Je; Sat, 24 Mar 2007 12:34:23 -0400 Date: Sat, 24 Mar 2007 12:34:23 -0400 From: Gary Palmer To: Gore Jarold Message-ID: <20070324163423.GA6101@in-addr.com> Mail-Followup-To: Gore Jarold , Steven Hartland , freebsd-fs@freebsd.org References: <03bf01c76c1d$b4a74160$b3db87d4@multiplay.co.uk> <55882.43410.qm@web63013.mail.re1.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <55882.43410.qm@web63013.mail.re1.yahoo.com> Cc: freebsd-fs@freebsd.org Subject: Re: phantom quota usage for user with no files ... ? X-BeenThere: freebsd-fs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Filesystems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Mar 2007 16:34:25 -0000 On Sat, Mar 24, 2007 at 09:16:12AM -0700, Gore Jarold wrote: > > Thanks, that is very helpful. > > Steven Hartland wrote: Files which where open at the time and hence still have references > similar to how deleted files still take up space until the last > handle is closed. > > > Can you tell me, how do I: > > a) see those handles (ps auxw|grep USERNAME showed nothing) > > b) remove/clear them ? > > > (I _do_ have lsof installed, but lsof|grep USERNAME also showed nothing...) Lookin for the users former home directory might show something: lsof -n | grep To remove/clear them, kill any processes that are accessing those files.