Re: Floppy drive not recognized by new device notifier
You are correct. A floppy drive is a block device, not a file system. This is why, when included in the fstab file, the noauto option is used:
The 'explicitly mount' is supposed to occur when you insert a diskette. My USB floppy behaves in this manner, and it's entry in my fstab is:
Originally posted by rmallis
noauto - The filesystem will NOT be automatically mounted at startup, or when mount passed -a. You must explicitly mount the filesystem.
/dev/sdd /media/floppy0 auto rw,user,noauto,exec,utf8 0 0
Comment