LS120 ("SuperDisks") and internal Zip drives are treated identically under Linux. They both use the ide_floppy driver which is compiled into the kernel by default in most distros.
Mounting the device is as simple as:
mount -t auto /dev/hdx /mnt/zipUsing an fs-type of 'auto' in the mount command allows the kernel to mount the disk ass either vfat or ext2 (whichever it is formattedas). By default, these disks are formatted as vfat (DOS) disks. You can convert them to ext2 by diong:
mke2fs /dev/hdxThese devices respond to the 'eject' command, and when mounted are 'locked' and cannot be removed until they are unmounted and ejected.
|
|
|