From owner-freebsd-questions Wed Jan 8 15:02:56 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id PAA06291 for questions-outgoing; Wed, 8 Jan 1997 15:02:56 -0800 (PST) Received: from whqvax.picker.com (whqvax.picker.com [144.54.1.1]) by freefall.freebsd.org (8.8.4/8.8.4) with SMTP id PAA06284 for ; Wed, 8 Jan 1997 15:02:53 -0800 (PST) Received: from ct.picker.com by whqvax.picker.com with SMTP; Wed, 8 Jan 1997 18:01:40 -0500 (EST) Received: from elmer.ct.picker.com ([144.54.57.34]) by ct.picker.com (4.1/SMI-4.1) id AA22337; Wed, 8 Jan 97 18:01:38 EST Received: by elmer.ct.picker.com (SMI-8.6/SMI-SVR4) id SAA23555; Wed, 8 Jan 1997 18:00:06 -0500 Message-Id: Date: Wed, 8 Jan 1997 18:00:06 -0500 From: rhh@ct.picker.com (Randall Hopper) To: gmarco@scotty.masternet.it (Gianmarco Giovannelli) Cc: questions@freebsd.org Subject: Re: Error mounting Zip SCSI References: <32D0F5E8.41C67EA6@scotty.masternet.it> X-Mailer: Mutt 0.56 Mime-Version: 1.0 In-Reply-To: <32D0F5E8.41C67EA6@scotty.masternet.it>; from Gianmarco Giovannelli on Jan 6, 1997 12:54:00 +0000 Sender: owner-questions@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Gianmarco Giovannelli: |I have mounted a Zip SCSI on my box... But I am not able to mount the |disk (msdos format) . | |Here is what kernel thing : | |(ahc0:2:0): "IOMEGA ZIP 100 E.08" type 0 removable SCSI 2 |sd2(ahc0:2:0): Direct-Access |sd2(ahc0:2:0): ILLEGAL REQUEST asc:24,0 Invalid field in CDB |sd2 could not mode sense (4). Using ficticious geometry |96MB (196608 512 byte sectors) No problem. I get this too. |but when I try : | |{114} /tmp#mount -t msdos /dev/sd2s1 /mnt |msdos: /dev/sd2s1: Invalid argument | |Where is the problem ? Two things come to mind. First, ZIPs by default come with the disk-spanning FAT partition in the 4th slot in the partition table. Also, the ZipTools will put it there too. You can redisk/format with DOS and SCSI drivers if you want. I personally leave the DOS partitions on 4 and put my UFS partitions on 1. Personal preference. To see where it is: fdisk /dev/sd2 If it is in the 4th slot, try: mount -t msdos /dev/sd2s4 /mnt instead. Of course, whatever device you use, make sure it exists. If not: cd /dev sh MAKEDEV sd2s1 sh MAKEDEV sd2s4 mkdir /mnt Randall Hopper