> I'm trying install my iomega zip drive 250 in Rd 8.0
> What I need to do to use this hardware in my pc?

Create a directory to which you want to mount the zip-drive. (obviously)
I use /mnt/zip/.

Then as root make sure the modules parport_pc and imm are loaded.  You
have to use 'su -' to become root, 'su' won't do.

Then check with lsmod, the output should show something like:
imm                    10656   0 
parport_pc             17476   1 


If it doesn't (and it probably won't, at least it didn't for me) load
the modules with modprobe:
modprobe parport_pc
modprobe imm (in that order, you'll get errors otherwise)

I then added the following line to /etc/fstab:
/dev/sda4               /mnt/zip                vfat    noauto,owner,users 0 0

A zip-drive always has - by default - one (and only one) partition the
fourth which is why you need /dev/sda4.

Then you can mount the drive with mount /mnt/zip.

HTH

btw, there should be a way of making your OS load the modules
automatically at boot-time but someone will have to explain that in a
little more detail 'cause I haven't figured that out yet.  You can aad
something* to /etc/modules.conf if I'm not mistaken but I don't know
what exactly...
Otherwise you'll have to load the modules every time after yyou've
rebooted...   (Which shouldn't be that often.)
-- 
 #  Mertens Bram "M8ram"  <[EMAIL PROTECTED]>  Linux User #249103  #
 # Red Hat Linux release 7.3 (Valhalla) kernel 2.4.18-19.7.x i686 128MB RAM #
 #  4:47pm up 5 days, 3:03, 2 users, load average: 0.28, 0.29, 0.29 #



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to