From owner-freebsd-questions@FreeBSD.ORG Mon Nov 7 05:16:03 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96AD816A41F for ; Mon, 7 Nov 2005 05:16:03 +0000 (GMT) (envelope-from ringworm01@gmail.com) Received: from xproxy.gmail.com (xproxy.gmail.com [66.249.82.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1FF1A43D46 for ; Mon, 7 Nov 2005 05:16:03 +0000 (GMT) (envelope-from ringworm01@gmail.com) Received: by xproxy.gmail.com with SMTP id t14so332006wxc for ; Sun, 06 Nov 2005 21:16:02 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:from:to:subject:date:user-agent:cc:references:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; b=tWa6vSiLwFNEeNjIaNsg1u/oI84OoPdmZIDrorKUgKpcUjVhNHttGhO7LaknXCghnr4diK3WujGsg+pQdNEUSzU41bk5dN3odF5SLwFO8EEnRf8QDS4HnAK1v7ItdsWQ9MpLHqCxCTKBKW/K0Cu+Xpp/I6EgV6ZJRY5B+Ac8UOg= Received: by 10.70.44.3 with SMTP id r3mr4609183wxr; Sun, 06 Nov 2005 21:16:02 -0800 (PST) Received: from ?192.168.1.10? ( [71.102.14.129]) by mx.gmail.com with ESMTP id h11sm25021wxd.2005.11.06.21.15.59; Sun, 06 Nov 2005 21:16:02 -0800 (PST) From: "Michael C. Shultz" To: Dave Webster Date: Sun, 6 Nov 2005 21:07:24 -0800 User-Agent: KMail/1.8.3 References: <1131325173.3160.5.camel@localhost> <200511061658.30611.ringworm01@gmail.com> <1131339478.1078.2.camel@localhost> In-Reply-To: <1131339478.1078.2.camel@localhost> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200511062107.25015.ringworm01@gmail.com> Cc: FreeBSD questions Subject: Re: filesystem full error 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: Mon, 07 Nov 2005 05:16:03 -0000 On Sunday 06 November 2005 20:57, Dave Webster wrote: > Thanks for the response, > I edited the /etc/rc.conf with the clear_tmp_enable="YES" > rebooted > reran pkg_add -r openoffice > same error. 248M 62M 166M 27% /var probably you don't have enough drive space on tmp, try linking /tmp to /usr/tmp, you have 42 gigs free there. On your machine try this mkdir /usr/tmp umount -f /tmp rm -r /tmp ln -sv /usr/tmp /tmp then reboot -Mike > > On Sun, 2005-11-06 at 16:58 -0800, Michael C. Shultz wrote: > > On Sunday 06 November 2005 16:59, Dave Webster wrote: > > > Hi, > > > I'm trying to: pkg_add -r openoffice and I get the following: > > > > > > /var: write failed, filesystem is full > > > mkdir: /var/db/pkg/ORBit-0.5.17_2: No space left on device > > > pkg_add: can't record package infor '/var/db/pkg/ORBit-0.5.17_2', > > > you're on your own! > > > > > > That last part is particularily chilling - if I'm on my own, I'm > > > hooped! > > > > > > Here's the result of df -h: > > > > > > Filesystem Size Used Avail Capacity Mounted on > > > /dev/ad0s1a 248M 93M 135M 41% / > > > devfs 1.0K 1.0K 0B 100% /dev > > > /dev/ad0s1e 248M 294K 228M 0% /tmp > > > /dev/ad0s1f 72G 25G 42G 37% /usr > > > /dev/ad0s1d 248M 62M 166M 27% /var > > > linprocfs 4.0K 4.0K 0B 100% /usr/compat/linux/proc > > > > > > Any suggestions on what I should do? > > > thanx in advance, > > > Dave > > > > In /etc/rc.conf set: > > > > clear_tmp_enable="NO" > > > > to > > > > clear_tmp_enable="YES" > > > > then reboot. > > > > -Mike