From owner-freebsd-fs@FreeBSD.ORG Fri Nov 4 11:02:26 2011 Return-Path: Delivered-To: freebsd-fs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 827A3106566B; Fri, 4 Nov 2011 11:02:26 +0000 (UTC) (envelope-from 000.fbsd@quip.cz) Received: from elsa.codelab.cz (elsa.codelab.cz [94.124.105.4]) by mx1.freebsd.org (Postfix) with ESMTP id 410EF8FC0A; Fri, 4 Nov 2011 11:02:26 +0000 (UTC) Received: from elsa.codelab.cz (localhost [127.0.0.1]) by elsa.codelab.cz (Postfix) with ESMTP id EB9C128455; Fri, 4 Nov 2011 12:02:24 +0100 (CET) Received: from [192.168.1.2] (ip-86-49-61-235.net.upcbroadband.cz [86.49.61.235]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by elsa.codelab.cz (Postfix) with ESMTPSA id 380B128453; Fri, 4 Nov 2011 12:02:24 +0100 (CET) Message-ID: <4EB3C63F.2060805@quip.cz> Date: Fri, 04 Nov 2011 12:02:23 +0100 From: Miroslav Lachman <000.fbsd@quip.cz> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.9.1.19) Gecko/20110420 Lightning/1.0b1 SeaMonkey/2.0.14 MIME-Version: 1.0 To: Matt Connor References: <5C156A63-D86D-4C1B-AFC4-DC5EA09494F6@xerq.net> In-Reply-To: <5C156A63-D86D-4C1B-AFC4-DC5EA09494F6@xerq.net> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: "freebsd-fs@freebsd.org" , Ivan Voras Subject: Re: Default inode number too low in FFS nowadays? 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: Fri, 04 Nov 2011 11:02:26 -0000 Matt Connor wrote: > > On Nov 3, 2011, at 5:43 AM, Ivan Voras wrote: > >> On 02/11/2011 12:57, Borja Marcos wrote: [...] >> Did you forget to do "make clean" after "make install" on several large >> ports? >> >> But yes, the ports tree is getting a bit unwieldy. On the other hand, >> did you fsck the file system lately? >> > > cd /usr/ports/ports-mgmt/portupgrade&& make install clean > > portsclean -CD > > That's a quick way to clean out all the clutter. Installing ruby and portupgrade is really big overhead to simple task, which can be done by: cd /usr/ports && make clean or with find: find /usr/ports/ -depth 3 -name "work" -exec rm -r {} + Miroslav Lachman