From owner-freebsd-questions@FreeBSD.ORG Mon Jan 19 15:13:41 2004 Return-Path: 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 A0DFF16A4CE for ; Mon, 19 Jan 2004 15:13:41 -0800 (PST) Received: from enterprise.thenetnow.com (enterprise.thenetnow.com [65.39.193.152]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1997B43D2F for ; Mon, 19 Jan 2004 15:13:40 -0800 (PST) (envelope-from gpeel@thenetnow.com) Received: from grant (hpeel.ody.ca [216.240.12.2]) by enterprise.thenetnow.com (8.11.6/8.11.6) with SMTP id i0JN6T630457 for ; Mon, 19 Jan 2004 18:06:30 -0500 (EST) (envelope-from gpeel@thenetnow.com) Message-ID: <000701c3dee1$df1a0c60$6501a8c0@grant> From: "Grant Peel" To: Date: Mon, 19 Jan 2004 18:13:36 -0500 Organization: The Net Now MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1158 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Subject: mount and umount X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Grant Peel List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2004 23:13:41 -0000 Hi all, Yes I have looked through the archives.... I have two drives. da0 and da1 da0 is suppsed to dd to da1 each night. here is the fstab... # See the fstab(5) manual page for important information on automatic mounts # of network filesystems before modifying this file. # # Device Mountpoint FStype Options Dump Pass# proc /proc procfs rw 0 0 /dev/acd0c /cdrom cd9660 ro,noauto 0 0 /dev/da0s1b none swap sw 0 0 /dev/da0s1a / ufs rw 1 1 /dev/da0s1g /home ufs rw,userquota 2 2 /dev/da0s1f /usr ufs rw 2 2 /dev/da0s1e /var ufs rw 2 2 /dev/da1s1a /DA1 ufs rw 0 0 /dev/da1s1g /DA1/home ufs rw 0 0 /dev/da1s1f /DA1/usr ufs rw 0 0 /dev/da1s1e /DA1/var ufs rw 0 0 Sometime in the not to recent past, /DA1/var, usr and home became dismounted, causing the dd to try to just write to the dirs on DA1 as oppsed to the mounted filesystems. Needless to say, the root filesystem (on DA1) ran out of room. Now when I try to mount or dismount /DA1/var, home or user, excelsior# mount /dev/da1s1e /DA1/var mount: /dev/da1s1e: Device busy excelsior# excelsior# umount /DA1/var umount: unmount of /DA1/var failed: Invalid argument excelsior# Nothing should be making the drive busy, and, how do I know what the invalid arg is??? Any help would be appreciated! -Grant