From owner-freebsd-questions@FreeBSD.ORG Tue Sep 8 20:38:25 2009 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 EB4F41065672 for ; Tue, 8 Sep 2009 20:38:25 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from mailhub.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id BBF0A8FC15 for ; Tue, 8 Sep 2009 20:38:25 +0000 (UTC) Received: from smoochies.rachie.is-a-geek.net (mailhub.lan.rachie.is-a-geek.net [192.168.2.11]) by mailhub.rachie.is-a-geek.net (Postfix) with ESMTP id 65FD57E818; Tue, 8 Sep 2009 12:38:37 -0800 (AKDT) From: Mel Flynn To: freebsd-questions@freebsd.org Date: Tue, 8 Sep 2009 22:38:22 +0200 User-Agent: KMail/1.11.4 (FreeBSD/8.0-BETA4; KDE/4.2.4; i386; ; ) References: <25314145.post@talk.nabble.com> <200909072112.14374.mel.flynn+fbsd.questions@mailing.thruhere.net> <25338956.post@talk.nabble.com> In-Reply-To: <25338956.post@talk.nabble.com> MIME-Version: 1.0 Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200909082238.22862.mel.flynn+fbsd.questions@mailing.thruhere.net> Cc: jaymax Subject: Re: Inconsistency in root partition size 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: Tue, 08 Sep 2009 20:38:26 -0000 On Tuesday 08 September 2009 04:14:55 jaymax wrote: > > restore -tf /disk03/dump/root2.dump > rootrestore-0.lst > > To my surprise rootrestore-0.lst contains a whole listings of ./usr/ files > ex. > > > 2926 ./usr/include/bsnmp/snmpmod.h > > 2927 ./usr/include/bsnmp/snmp_atm.h > > Now /usr is on a separate and distinct partition > > > /dev/ad0s1f 36205990 25765232 7544280 77% /usr > > Hope someone can make some sense of this. This is exactly what I figured. Some files are hiding behind a mount point. The got there most likely, cause you did make installworld without /usr mounted, which would happen if you have the FreeBSD source tree on a different location, reboot into single user mode, only mount the source tree and do installworld. To repair, reboot into single user. Run the following commands: fsck -y / mount -u -o rw / rm -rf /usr/* exit This should delete the offending files. -- Mel