From owner-freebsd-questions@FreeBSD.ORG Fri Mar 30 15:28:41 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D870B16A400 for ; Fri, 30 Mar 2007 15:28:41 +0000 (UTC) (envelope-from josh.carroll@gmail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.246]) by mx1.freebsd.org (Postfix) with ESMTP id 972D913C46A for ; Fri, 30 Mar 2007 15:28:41 +0000 (UTC) (envelope-from josh.carroll@gmail.com) Received: by an-out-0708.google.com with SMTP id c24so526729ana for ; Fri, 30 Mar 2007 08:28:41 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=EgxrJNEY4+x1Qz3oQA2GWh2xOYXYLXWJ+Hth8Ufu8/w4K2kcCm5GqMuKUcoJdrrDdyNMor3InBmM9NztFKYEUuqEeuO0SY00gMNW+yqeIi+YNiI+36lptRDvYVqZAnDPOlsCHuOH/xkmTu7xMQA+Y8rmHnpNcMaHMz2IO3BYw2U= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=rwJBiFLcpN8oXuafpNRqAhKVRdjdVzIAMzC5HiQMGXFAcgpWVa6kNfO0NtGCiwRlev6jmDETMHvDESGwICyFMpUkeY3PlAxSGK99QtRYrjoZ+bPXIpQG42S8A7f69Uf/HLh/OUQI3BwdsUPg6SvzE5er7XBLDoJpJMfKSgDgrh8= Received: by 10.100.111.16 with SMTP id j16mr1427488anc.1175268520907; Fri, 30 Mar 2007 08:28:40 -0700 (PDT) Received: by 10.100.231.18 with HTTP; Fri, 30 Mar 2007 08:28:40 -0700 (PDT) Message-ID: <8cb6106e0703300828x6da0177dy6329f5009c9c0bb5@mail.gmail.com> Date: Fri, 30 Mar 2007 08:28:40 -0700 From: "Josh Carroll" To: "Drew Tomlinson" In-Reply-To: <460D212F.6080203@mykitchentable.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <460D212F.6080203@mykitchentable.net> Cc: FreeBSD Questions Subject: Re: Help Finding Disk Drive Usage X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: josh.carroll@psualum.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Mar 2007 15:28:41 -0000 > So why does du report only 2.0 GB of usage while df reports over 6 GB? > Where has my storage gone? Or do I not understand proper usage of du? If you removed files that still had open file handles (e.g. from /var/log), they are likely still allocated and showing up in df, but not du since they're not on the filesystem anymore. Restart any daemons that you removed log files for, and the space will "show up". Or a simple reboot should fix things. Josh