From owner-freebsd-questions@FreeBSD.ORG Tue May 29 19:17:15 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 5E44A16A421 for ; Tue, 29 May 2007 19:17:15 +0000 (UTC) (envelope-from mailing.lists@dvterry.com) Received: from mail.dvterry.com (mail.dvterry.com [64.34.163.247]) by mx1.freebsd.org (Postfix) with ESMTP id 3DCC313C447 for ; Tue, 29 May 2007 19:17:15 +0000 (UTC) (envelope-from mailing.lists@dvterry.com) Received: from [10.24.65.11] (user1.coxfiber.net [216.54.27.211]) by mail.dvterry.com (Postfix) with ESMTP id A29543380FD; Tue, 29 May 2007 15:17:15 -0400 (EDT) Message-ID: <465C7C3A.80707@dvterry.com> Date: Tue, 29 May 2007 15:17:14 -0400 From: magikman User-Agent: Thunderbird 1.5.0.10 (Windows/20070221) MIME-Version: 1.0 To: Jack Schneider References: <465C73EB.501@volunteerwireless.net> In-Reply-To: <465C73EB.501@volunteerwireless.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Blown Up /Usr files 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, 29 May 2007 19:17:15 -0000 Jack Schneider wrote: > Hi, Anyone. > My /Usr directory/slice is now over 5.2 GB for a basic workstation 6.2 > install. thats 90%+ of the slice. I need help with a procedure to clean > it up. The machine is: > > FreeBSD Growler.maplebend.net 6.2-RELEASE-p3 FreeBSD 6.2-RELEASE-p3 #2: > Wed Apr 18 11:16:35 CDT 2007 > KDE 3.5.1 > > Updated /ports & Sources via CVSUP. > > I have no idea where to start. Where should I look for redundant or > obsolete files? > > Thanks, in advance > Jack > > > > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" You could use the find command to find all files over a specific size and display the size of the files. du -sh $(find /usr -f -size +1000k) You could also pipe this to sort or something to give sorted list of sizes.