Date: Fri, 18 Jan 2002 09:23:02 -0800 (PST) From: Tim Erlin <tperlin@yahoo.com> To: Deman <s9810048@mmu.edu.my>, freebsd-questions@FreeBSD.org Subject: Re: /var full.. how solve it? Message-ID: <20020118172302.98161.qmail@web11708.mail.yahoo.com> In-Reply-To: <3089.10.100.98.21.1011370910.squirrel@10.100.3.5>
next in thread | previous in thread | raw e-mail | index | archive | help
You can do a few things: 1. Find out what specifically is taking up all the space and delete it: cd /var du -s * Perhaps you're not managing some log file properly. 2. You can move /var into /usr where you have some room. mkdir /usr/var cd /var tar cf - . | (cd /usr/var; tar xf - ) rm -rf /var ln -s /usr/var /var (from www.mostgraveconcern.com/freebsd) When I install, I usually do this with /tmp and /var. 3. You could always add more diskspace and put /var there. Probably not necessary. Hope that helps. --Tim --- Deman <s9810048@mmu.edu.my> wrote: > Hi, > > I got the /var full after running portugrade > > Filesystem 1M-blocks Used Avail Capacity > Mounted on > /dev/ad0s1a 96 32 56 37% / > /dev/ad0s1g 1025 897 46 95% > /home > /dev/ad0s1f 2713 739 1756 30% > /usr > /dev/ad0s1e 19 19 -1 109% > /var > procfs 0 0 0 100% > /proc > > Is there any good suggestion of what should I do? > And also how to do it or cross > point to any article :) > > - dman > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of > the message __________________________________________________ Do You Yahoo!? Send FREE video emails in Yahoo! Mail! http://promo.yahoo.com/videomail/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020118172302.98161.qmail>