From owner-freebsd-questions Tue Sep 5 18:35:48 2000 Delivered-To: freebsd-questions@freebsd.org Received: from diskfarm.firehouse.net (rdu25-12-043.nc.rr.com [24.25.12.43]) by hub.freebsd.org (Postfix) with ESMTP id 6245A37B423 for ; Tue, 5 Sep 2000 18:35:43 -0700 (PDT) Received: (from abc@localhost) by diskfarm.firehouse.net (8.9.3/8.9.3) id VAA73354; Tue, 5 Sep 2000 21:36:06 -0400 (EDT) (envelope-from abc) Date: Tue, 5 Sep 2000 21:36:06 -0400 From: Alan Clegg To: youlgok@attglobal.net Cc: FreeBSD-Questions Subject: Re: /: write failed, file system is full Message-ID: <20000905213606.A70550@diskfarm.firehouse.net> Mail-Followup-To: Alan Clegg , youlgok@attglobal.net, FreeBSD-Questions References: <39B59784.12B92D1@attglobal.net> <20000905210600.G66030@diskfarm.firehouse.net> <39B59E75.55CDE3A4@attglobal.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <39B59E75.55CDE3A4@attglobal.net>; from youlgok@attglobal.net on Tue, Sep 05, 2000 at 09:31:34PM -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Unless the network is lying to me again, youlgok@attglobal.net said: > Hi, AlanC: > > This is the result of > > df /zip > > # df /zip > Filesystem 1K-blocks Used Avail Capacity Mounted on > /dev/wd0s1a 37663 26102 8548 75% / > > As you said, I think /zip is not mounted. How do I mount it? Well, if it is in your /etc/fstab file, all you'd need to do is 'mount /zip'. Otherwise, you will have to determine where the disk is located and then mount that device. As an example, I have a Compact-Flash device, that when inserted, shows up like this: ad8: 342MB [695/16/63] at ata4-master using BIOSPIO ad9: 342MB [695/16/63] at ata4-slave using BIOSPIO and my entry in /etc/fstab reads as: /dev/ad8s1 /udisk msdos rw,noauto 0 0 So, when I insert the drive, I can just 'mount /udrive'. If I were to do this manually, I'd do: mount -t msdos /dev/ad8s1 /udisk You won't (most likely) use ad8s1, but whatever device the Zip shows up as in your 'dmesg' output. AlanC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message