From owner-freebsd-questions@FreeBSD.ORG Thu Mar 13 21:14:51 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BCC511065671 for ; Thu, 13 Mar 2008 21:14:51 +0000 (UTC) (envelope-from fbsd.questions@rachie.is-a-geek.net) Received: from snoogles.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 84F2D8FC25 for ; Thu, 13 Mar 2008 21:14:51 +0000 (UTC) (envelope-from fbsd.questions@rachie.is-a-geek.net) Received: from localhost (localhost [127.0.0.1]) by snoogles.rachie.is-a-geek.net (Postfix) with ESMTP id 8CEF21CD18; Thu, 13 Mar 2008 13:14:50 -0800 (AKDT) From: Mel To: freebsd-questions@freebsd.org Date: Thu, 13 Mar 2008 22:06:56 +0100 User-Agent: KMail/1.9.7 References: <20080313220748.63be20bf.ghirai@ghirai.com> <18393.35674.442789.638417@jerusalem.litteratus.org> <20080313223657.2be87400.ghirai@ghirai.com> In-Reply-To: <20080313223657.2be87400.ghirai@ghirai.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200803132206.59355.fbsd.questions@rachie.is-a-geek.net> Cc: Ghirai Subject: Re: Low space on / X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Mar 2008 21:14:51 -0000 On Thursday 13 March 2008 21:36:57 Ghirai wrote: > On Thu, 13 Mar 2008 16:15:22 -0400 > > Robert Huff wrote: > > Ghirai writes: > > > Can't remember exactly since when, or how, but atm. i see this: > > > > > > Filesystem Size Used Avail Capacity Mounted on > > > /dev/ad6s3a 496M 454M 1.8M 100% / > > > > Start with /tmp. > > Also: > > > > du -x / | sort -nr | head -n 25 > > Here's the output (removed a couple other < 100KiB ): > > 986K /bin > 512B /dev > 366K /etc/rc.d > 270K /lib/geom > 250K /etc/mail > 170K /libexec > 138K /etc/ssh > 137M / > 121M /boot > 118K /etc/periodic > 116K /etc/defaults > 112M /boot/kernel > > /tmp is ~2MiB. > > Atm. i have no clue how df reports 454M used... That's cause you did du -xh | sort, so you're missing the 90M entries. Then again, it reports 137M for /. So, very likely there's a file in /tmp that's unlinked but still opened by a program. fstat -f / or fstat -u myuid should give you a clue. -- Mel Problem with today's modular software: they start with the modules and never get to the software part.