IOMEGA Click Drive
Joshua Oreman
oremanj at webserver.get-linux.org
Mon Apr 21 15:37:33 PDT 2003
On Mon, Apr 21, 2003 at 09:40:42AM -0400 or thereabouts, Jerry McAllister seemed to write:
> >
> > >
> > > Trying to figure out how to mount a IOMEGA Click drive in my laptop. The
> > > device shows up as adf0 but when trying to mount it I get bad superblock
> > > size.
> > >
> > > Any hint's would be welcome
>
> >
> > Do you need to build a file system on it first? eg fdisk/disklabel/newfs
> > stuff?
>
> To add to my own response (sorry) I don't really know what an IOMEGA Click
> drive is and a 'man adf' got me nothing. Should it be treated as a floppy
> drive? If so, you probably don't really want to mount it at all. Check
> out info for readingwriting floppies in documentation and archives if that
> is the case.
I think that was a typo. I think he meant `afd0'.
This is the same thing my Zip drive shows up as, and yes, you do need to put a
file system on it. It may already have a DOS fs on it, so you may want to try
# file -s /dev/afd0
to see what's on it. If it says `data' then you need to make an FS before mounting:
# disklabel -w /dev/afd0 auto
# newfs /dev/afd0c
# mount /dev/afd0 /mnt
If it says FFS:
# mount /dev/afd0 /mnt
If it says x86 boot sector:
4.x: # mount_msdos /dev/afd0 /mnt
5.x: # mount_msdosfs /dev/afd0 /mnt
Hope this helps,
-- Josh
>
> ////jerry
>
> >
> > >
> > > Thanks
> > >
> > > M;)
> _______________________________________________
> freebsd-questions at freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "freebsd-questions-unsubscribe at freebsd.org"
More information about the freebsd-questions
mailing list