How to enable your Floppy driver.

tgp1994
  1 year ago
  9

  1. Open up your favorite text editor as root, and edit /etc/fstab
  2. Comment out the line that mentions your floppy device. For example, here is mine after the fact:
    #/dev/fd0 /media/floppy0 vfat users,noauto 0 0
  3. You may now mount your floppy. (If it doesn't show up in nautilus, type the following into a terminal: sudo mount /dev/fd0 /media/floppy0) (If that reports an unknown filesystem, then type sudo mount -t msdos /dev/fd0 /media/floppy0)
  4. If you ever need to delete a file from the floppy, it is best to press Shift + delete rather than just pressing delete. This will permenantly remove the selected file(s), rather than sending them to a trash bin hidden on the floppy.
Comments
Qruqs 13 years ago

Not using the floppy drive much anymore, but if I ever need to fetch something old, I now know how to get it working.