From owner-freebsd-questions@FreeBSD.ORG Fri Mar 13 13:47:13 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 AC8D21065670 for ; Fri, 13 Mar 2009 13:47:13 +0000 (UTC) (envelope-from mlfreebsd@streamingedge.com) Received: from mail.streamingedge.com (mail.streamingedge.com [66.151.192.165]) by mx1.freebsd.org (Postfix) with ESMTP id 83B938FC1D for ; Fri, 13 Mar 2009 13:47:13 +0000 (UTC) (envelope-from mlfreebsd@streamingedge.com) Received: from mail.streamingedge.com (localhost.streamingedge.com [127.0.0.1]) by mail.streamingedge.com (Postfix) with ESMTP id 79719119EEA; Fri, 13 Mar 2009 09:47:11 -0400 (EDT) Received: from [172.17.0.115] (unknown [172.17.0.115]) by mail.streamingedge.com (Postfix) with ESMTPA id 5DEA3119EE6; Fri, 13 Mar 2009 09:47:11 -0400 (EDT) Message-ID: <49BA63D3.9020404@streamingedge.com> Date: Fri, 13 Mar 2009 09:46:59 -0400 From: Jacques Manukyan Organization: StreamingEdge User-Agent: Thunderbird 2.0.0.19 (Windows/20081209) MIME-Version: 1.0 To: Warren Liddell References: <49BA44A1.2080800@maydias.com> <49BA5350.3050008@maydias.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP Cc: Mehul Ved , freebsd-questions@freebsd.org, Neal Hogan Subject: Re: / partition full X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: jacques.manukyan@streamingedge.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Mar 2009 13:47:13 -0000 Definitely take a look at the /usr/home directory like Mehul stated. Try something like this to get a list of large files in that file system: find /usr -type f -size +50M -exec ls -la {} \; or find /usr/home -type f -size +50M -exec ls -la {} \; The above commands will print out a list of files above 50 Megs. Also, you might have large log files lying around the file system taking up space. -- Jacques Manukyan Mehul Ved wrote: > On Fri, Mar 13, 2009 at 6:06 PM, Warren Liddell wrote: > >> Thanks that gave me what i needed .. now i goto figure out what i can del an >> what not to .. never had a prob with / filling up before *g* >> >> enterprise# du -h -d 1 / >> 537G /usr >> 538G / >> > > Pretty easy to figure out where the problem is. I guess I'd check > /usr/home next. > > >