From mboxrd@z Thu Jan 1 00:00:00 1970 Received: (qmail 25589 invoked from network); 30 Nov 1996 03:35:12 -0000 Received: from vanzandt.mv.com (root@207.22.8.81) by mail2.redhat.com with SMTP; 30 Nov 1996 03:35:11 -0000 Received: from vanzandt.mv.com (jrv@localhost [127.0.0.1]) by vanzandt.mv.com (8.7.5/8.7.3) with ESMTP id VAA00707; Fri, 29 Nov 1996 21:15:38 -0500 Message-Id: <199611300215.VAA00707@vanzandt.mv.com> To: blinux-list@redhat.com Cc: Luke Davis Subject: Re: I'v done it!--Finily I have done it! In-reply-to: Your message of "Wed, 27 Nov 1996 00:58:05 EST." Date: Fri, 29 Nov 1996 21:15:38 -0500 From: Jim Van Zandt List-Id: Luke Davis writes: >Now if I could only figure out how to use a parallel zip drive under >linux, I'd be all set! Support for that controller is available, but you have to configure and compile the kernel to get it. Do "make config" and answer "Y" to at least these questions: SCSI support? SCSI disk support? IOMEGA Parallel Port ZIP drive SCSI support? If the Zip drive is your only SCSI disk, you will find it at /dev/sda. Otherwise, it will be /dev/sdb or /dev/sdc. Iomega puts only one partition on their DOS disks, but they call it partition 4. Therefore, you would mount it something like this: # mount -tmsdos /dev/sdb4 /mnt I prefer to repartition the disks and put ext2 filesystems on them, something like this: # fdisk /dev/sdb d 4 n p 4 1 96 w # mke2fs /dev/sdb1 # mount -text2 /dev/sdb1 /mnt - Jim Van Zandt