From owner-freebsd-questions@FreeBSD.ORG Tue May 29 19:21:39 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 D57F316A468 for ; Tue, 29 May 2007 19:21:39 +0000 (UTC) (envelope-from cptsalek@gmail.com) Received: from mu-out-0910.google.com (mu-out-0910.google.com [209.85.134.190]) by mx1.freebsd.org (Postfix) with ESMTP id 61C6513C458 for ; Tue, 29 May 2007 19:21:39 +0000 (UTC) (envelope-from cptsalek@gmail.com) Received: by mu-out-0910.google.com with SMTP id w9so1597554mue for ; Tue, 29 May 2007 12:21:38 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=qNqq+cD9inIDWRLdLTf7DHJdAZiaQQkwd0Uw4/bd9MCnGsV1uylnhZYwQHboRBQUsQXY6i4wbcUWktxXFB6gzzt/4DdC1wlP1q48++SNMTKG33hREuQrMxUp5upNMh4n+Bmfj1q12IsRqID9fuurd99cEMr8I4dQu7wwgJCjWig= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=EuTOQQOX1eqxQ4atg2EzTI50ZE2i7mcOC2Q7vS8N6TmNP/nyT3qgBYISPsZXJ70F+3pavQ6XeIzPbSLT0YHA3Mup5z8RmrYup0WbcPY8vCRB8/yCkkydP6MtBnGOTG6VtZ/MbByD+ONPbXPQqVQ9uh88iTlgeB4hCGWklXoMDjY= Received: by 10.82.187.16 with SMTP id k16mr13336169buf.1180466497972; Tue, 29 May 2007 12:21:37 -0700 (PDT) Received: by 10.82.171.9 with HTTP; Tue, 29 May 2007 12:21:37 -0700 (PDT) Message-ID: <14989d6e0705291221l732e8259o72ea4998f6f89a40@mail.gmail.com> Date: Tue, 29 May 2007 19:21:37 +0000 From: "Christian Walther" To: "Jack Schneider" In-Reply-To: <465C73EB.501@volunteerwireless.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <465C73EB.501@volunteerwireless.net> 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:21:39 -0000 Hi, On 29/05/07, 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. > What about doing a # cd /usr ; du -hs * This will list the contents of the hierarchy, so you might get a glimpse of where all your disk space is. A pretty good example would be /usr/ports/distfiles. And if you don't do a "make clean" after you installed a port you have a complete source tree, including object files and read to be installed binaries in a ./work-subdir of every port you installed. cd /usr/ports ; make clean will help in this case. And is it possible that your home-Directory is actually /usr/home/? In all FreeBSD installations I did my home-dirs end up there, /home being just a symlink to /usr/home. HTH Christian