From owner-freebsd-questions@FreeBSD.ORG Tue Jun 21 13:54:49 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 26A3716A41C for ; Tue, 21 Jun 2005 13:54:49 +0000 (GMT) (envelope-from subhro.kar@gmail.com) Received: from rproxy.gmail.com (rproxy.gmail.com [64.233.170.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0D9B43D48 for ; Tue, 21 Jun 2005 13:54:48 +0000 (GMT) (envelope-from subhro.kar@gmail.com) Received: by rproxy.gmail.com with SMTP id r35so1396065rna for ; Tue, 21 Jun 2005 06:54:48 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:disposition-notification-to:date:from:organization:user-agent:x-accept-language:mime-version:to:cc:subject:references:in-reply-to:content-type; b=lMQvbfGlPWH+RKoyvw18vcQmPi6CvbjQ2unGl0mAyfUFwr/vf+/sHAbGwNy1hhTOSg9NHMZINBseHqFtV3Fj8Y4629iYLiNdAk3l3PDREO34+tefux875o76QExfeK2OOQrvfWdKykC+vmAPF3ekPNPIQXM2bUBEg3XqHfwjY80= Received: by 10.38.207.69 with SMTP id e69mr2445967rng; Tue, 21 Jun 2005 06:54:48 -0700 (PDT) Received: from ?59.93.161.143? ([59.93.161.143]) by mx.gmail.com with ESMTP id k21sm731160rnb.2005.06.21.06.54.39; Tue, 21 Jun 2005 06:54:47 -0700 (PDT) Message-ID: <42B81BF6.3050506@gmail.com> Date: Tue, 21 Jun 2005 19:23:58 +0530 From: Subhro Organization: Indian Institute of Information Technology User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Lawrence Petrykanyn References: In-Reply-To: Content-Type: multipart/mixed; boundary="------------010607050900070806050600" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: Newbie - Trouble installing OpenOffice 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, 21 Jun 2005 13:54:49 -0000 This is a multi-part message in MIME format. --------------010607050900070806050600 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit On 6/21/2005 5:58, Lawrence Petrykanyn wrote: >Hi! > > Hello :-), > First, I tried to install OpenOffice using the ports collection. >The first attempt proceeded successfully for quite a while, but then failed >because it was unable to fetch certain files (no file found, access denied), >then subsequent attempts failed because it said that a lower version was >already installed. > Before trying a second time, did you clean up the installation folders using 'make clean'? >So I did a pkg_delete which did not work because: >"pkg_delete couldn't entirely delete package (perhaps the packing list is >incorrectly specified?)". > Didn't get you. What did you try to pkg_delete? >So I looked in /var/db/pkg but didn't see an >OpenOffice folder. > > Entirely expected. OpenOffice installation was not registered as it was never completed. > Knowing when to quit, I decided to install the package so I >downloaded OOo_1.1.3_FreeBSD410Intel410_install.tgz and did pkg_add -r >openoffice. > It is always a good idea to use prebuilt binaries compared to home made ones for two reasons. First of all if you dont have a very powerful system, it would be a hard time compiling something like KDE or OpenOffice which can very well take days before it finishes off. Secondly, it saves lot of bandwidth. That matters if you are not very rich and bandwidth is costly like it is for me. But the pros of using home made binaries are, you can use optimizations and make the binary hardware specific. This would give a BIG performance gain. Secondly there are a few features which needs to be enabled at compile time. In most of the cases this calls for using the ports. > The attempt failed but I did manage to copy the output. It was >over ten-thousand lines long, so I just excerpted it: > > >sympatico# pkg_add -r openoffice >Fetching, etc... > >/var: write failed, filesystem is full >OpenOffice.org1.1.2/share/cde/types/it.UTF-8/vnd.sun.xml.draw.dt: Can't open >OpenOffice.org1.1.2/share/cde/types/it.UTF-8/vnd.sun.xml.draw.dt': No such >file or directory >/var: write failed, filesystem is full >OpenOffice.org1.1.2/share/cde/types/it.UTF-8/vnd.sun.xml.impress.dt: Can't >open OpenOffice.org1.1.2/share/cde/types/it.UTF-8/vnd.sun.xml.impress.dt': >No such file or directory >. >. >. >/var: write failed, filesystem is full >OpenOffice.org1.1.2/program/python-core: Can't restore symlink to >'python-core-2.2.2': No space left on device >/var: write failed, filesystem is full >/var: write failed, filesystem is full > Did you have softupdates enabled on your system? Soft updates sometimes defer the release of file descriptors. And if you start using file descriptors too fast then you may run out of available descriptors thus getting this error in spite of the face that there is space on the platters. > When I saw the "filesystem is full" message, I did a df: > >sympatico# df >Filesystem 1K-blocks Used Avail Capacity Mounted on >/dev/ad1s1a 253678 119824 113560 51% >/devfs 1 1 0 100% /dev >/dev/ad1s1e 253678 16 233368 0% /tmp >/dev/ad1s1f 36221772 3195004 30129028 10% /usr >/dev/ad1s1d 253678 159700 73684 68% /var >/dev/ad0s1 9950544 7666112 2284432 77% /mnt > > It really looks to me as if the soft updates is the culprit. May we have a look at 'mount' without the 's? Thanks S. --------------010607050900070806050600--