From owner-freebsd-questions Tue Aug 26 09:51:23 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id JAA21063 for questions-outgoing; Tue, 26 Aug 1997 09:51:23 -0700 (PDT) Received: from whqvax.picker.com (whqvax.picker.com [144.54.1.1]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id JAA21039 for ; Tue, 26 Aug 1997 09:51:18 -0700 (PDT) Received: from ct.picker.com by whqvax.picker.com with SMTP; Tue, 26 Aug 1997 10:48:50 -0400 (EDT) Received: from elmer.ct.picker.com ([144.54.57.34]) by ct.picker.com (4.1/SMI-4.1) id AA09942; Tue, 26 Aug 97 10:48:49 EDT Received: by elmer.ct.picker.com (SMI-8.6/SMI-SVR4) id KAA11787; Tue, 26 Aug 1997 10:45:49 -0400 Message-Id: <19970826104548.11175@ct.picker.com> Date: Tue, 26 Aug 1997 10:45:48 -0400 From: Randall Hopper To: Parrish Myers Cc: Doug White , freebsd-questions@FreeBSD.ORG Subject: Re: Zip Drive References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.81 In-Reply-To: ; from Doug White on Mon, Aug 25, 1997 at 10:39:49PM -0700 Sender: owner-freebsd-questions@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Doug White: |On Mon, 18 Aug 1997, Parrish Myers wrote: |> mount /dev/sd0s1 /zip ... |> /dev/sd0s1 on /zip: Incorrect super block. | |Is this a UFS-formatted or a MSDOS-formatted disk? | |For MSDOS, you want to do: | |mount -t msdos /dev/sd0c /zip Not exactly. MSDOS disks are sliced. By default, IOMEGA ZIP Disks come formatted with the DOS FS slice on slice 4. This will be the case for ZIPTOOLS-reformatted disks as well. So you want: mount -t msdos /dev/sd0s4 /zip (assuming sd0, i.e. the ZIP is your first probed SCSI disk). |For UFS: | |mount /dev/sd0c /zip This is what you want for UFS disks that are "dangerously dedicated". If you instead format your UFSs sliced like I prefer to, then use the slice notation. I put my ZIP UFSs on slice 1. Makes it real easy to write a safe, generic setuid "mountzip" script: mount -t msdos /dev/sd0s4 /zip || mount /dev/sd0s1 /zip "df /zip" tells you right off what FS type you've got in case you forget. Randall