From owner-freebsd-questions Sat Nov 1 22:29:35 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id WAA03128 for questions-outgoing; Sat, 1 Nov 1997 22:29:35 -0800 (PST) (envelope-from owner-freebsd-questions) Received: from jason03.u.washington.edu (root@jason03.u.washington.edu [140.142.77.10]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id WAA03123 for ; Sat, 1 Nov 1997 22:29:32 -0800 (PST) (envelope-from jcwells@u.washington.edu) Received: from saul5.u.washington.edu (root@saul5.u.washington.edu [140.142.83.3]) by jason03.u.washington.edu (8.8.4+UW97.07/8.8.4+UW97.05) with ESMTP id WAA47546; Sat, 1 Nov 1997 22:29:30 -0800 Received: from S8-37-26.student.washington.edu (S8-37-26.student.washington.edu [128.208.37.26]) by saul5.u.washington.edu (8.8.4+UW97.07/8.8.4+UW97.04) with SMTP id WAA16018; Sat, 1 Nov 1997 22:29:29 -0800 (PST) Message-Id: <3.0.3.32.19971102063247.007b4a40@jcwells.deskmail.washington.edu> X-Sender: jcwells@jcwells.deskmail.washington.edu X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.3 (32) Date: Sun, 02 Nov 1997 06:32:47 +0000 To: Charlie Root , freebsd-questions@FreeBSD.ORG From: Jason Wells Subject: Re: In-Reply-To: <199711020645.HAA01138@e316.mhk.lu.se> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk At 07:45 11/2/97 +0100, Charlie Root wrote: >hi again. >i'm having a problem when istalling ssh >gunzip says: >and that's not true. there's plenty of space... >what am I doing wrong now? :-/ OK. Just because you think you have space on your DISC does not mean you have space in a particular filesystem. Lets look at your error message. >Nov 2 07:43:27 e316 /kernel: pid 1126 (gunzip), uid 0 on /: file system full >Nov 2 07:43:27 e316 /kernel: pid 1126 (gunzip), uid 0 on /: file system full ^ look here _______| This is telling you that the root file system is full. The root file system is probably 30 meg or less. That would be easy to fill up. I am assuming that you used the default filesystems upon install. Let's look at another thing. >e316# gunzip ssh-1.2.20.tar.gz Charlie Root This is telling me that you are using your root account. This is sometimes necessary of course. You did read the warnings about logging in as root, right? :) I take of my "root jacket" at every instance I do not absolutley need it. I advise you to do the same. Perhaps you are tryin to unzip this in the home directory of root? Move your tarball to a file in the /usr directory to unzip it and build it. Then install it. This will save you the trouble of filling up the root filesytem. Unless you did something very creative when installing, you should have space in the /usr filesystem to get ssh installed. If you are using your root filesystem for general storage and have filled up your root filesystem I recommend moving this general storage to a directory in the /usr filesystem. Aslo, see man du for disc usage. Later, Jason Wells