Date: Fri, 13 Mar 2009 09:46:59 -0400 From: Jacques Manukyan <mlfreebsd@streamingedge.com> To: Warren Liddell <shinjii@maydias.com> Cc: Mehul Ved <mehul.n.ved@gmail.com>, freebsd-questions@freebsd.org, Neal Hogan <nealhogan@gmail.com> Subject: Re: / partition full Message-ID: <49BA63D3.9020404@streamingedge.com> In-Reply-To: <c1e7523f0903130540m5ffe41bev43eadc0c7705d7e8@mail.gmail.com> References: <49BA44A1.2080800@maydias.com> <ab7b49bc0903130438t2fbc2b46n7fb9ba68be041b57@mail.gmail.com> <49BA5350.3050008@maydias.com> <c1e7523f0903130540m5ffe41bev43eadc0c7705d7e8@mail.gmail.com>
next in thread | previous in thread | raw e-mail | index | archive | help
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 <shinjii@maydias.com> 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. > > >
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?49BA63D3.9020404>