From owner-freebsd-questions Tue Apr 14 11:29:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA04899 for freebsd-questions-outgoing; Tue, 14 Apr 1998 11:29:55 -0700 (PDT) (envelope-from owner-freebsd-questions@FreeBSD.ORG) Received: from whqvax.picker.com (whqvax.picker.com [144.54.1.1]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id SAA04396 for ; Tue, 14 Apr 1998 18:29:04 GMT (envelope-from rhh@ct.picker.com) Received: from ct.picker.com by whqvax.picker.com with SMTP; Tue, 14 Apr 1998 14:26:53 -0400 (EDT) Received: from elmer.ct.picker.com by ct.picker.com (4.1/SMI-4.1) id AA25307; Tue, 14 Apr 98 14:26:52 EDT Received: by elmer.ct.picker.com (SMI-8.6/SMI-SVR4) id OAA03644; Tue, 14 Apr 1998 14:26:19 -0400 Message-Id: <19980414133134.37930@ct.picker.com> Date: Tue, 14 Apr 1998 13:31:34 -0400 From: Randall Hopper To: Antonio Bemfica Cc: freebsd-questions@FreeBSD.ORG Subject: Re: how do I mount a DOS ZIP disk? Mail-Followup-To: Antonio Bemfica , freebsd-questions@FreeBSD.ORG References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89.1i In-Reply-To: ; from Doug White on Mon, Apr 13, 1998 at 04:07:53PM -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Doug White: |Antonio Bemfica: | |> How do I mount a DOS (FAT16) ZIP disk? I have no problems with ZIP disks |> with the FreeBSD filesystem - "mount /dev/sd0 /zip" does it fine, but with |> DOS formatted disks, |> |> "mount_msdos /dev/sd0 /zip" |> or |> "mount -t msdos /dev/sd0 /zip" |> |> result in a |> |> "mount_msdos: /dev/sd0: Invalid argument" error | |Try | |mount -t msdos /dev/sd0s1c /mnt By default, DOS ZIP disks come formatted with slice 4 designated the full-disk DOS slice. So likely what you want is: mount -t msdos /dev/sd0s4 /mnt Of course you can re-fdisk and format them any which way you want. I tend to prefer putting my UFSs on my UFS ZIPs in slice 1, and leaving the DOS FAT FSs in slice 4. Makes them easy to distinguish. My "mountzip" script just tries to mount both slices, and succeeds on the correct one. Randall To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message