If you're new here, you may want to subscribe to my RSS feed and if you have questions related to your ubuntu system post question to our forums. Thanks for visiting!
This tutorial will explain how to mount and format floppy disks in Ubuntu
Mount Floppy disk in ubuntu
If you want to mount MS-DOS formatted floppy run the following commands from terminal
mkdir /mnt/floppy
sudo mount -t msdos /dev/fd0 /mnt/floppy
Options
-t option tells the system to look for a msdos filesystem
The /dev/fd0 is your floppy drive ( This may be different for you check /dev folder to confirm)
/mnt/floppy is the point where you want to mount the device to
Unmount floppy disk
If you want to unmount floppy use the following command (This is very important after copying your data)
sudo umount /dev/fd0
Format floppy disk
Format your floppy drive with windows compatible disk
sudo mformat -f 1440 A:
The 1440 is the number of bytes, and the A: specifies the floppy drive.







What’s a floppy disk?
I don’t have a floppy drive. Today, I don’t know what I can do with this. Maybe for bios flash.
I wouldn’t rely on a floppy to do a bios flash as they make them so cheap these days, not the quality that they use to be. Old tech anyway
sudo mount!!??
what’s this?
is ubuntu really that far behind? in kubuntu you just open dolphin and click on the floppy icon. No need to be root or use sudo.
I removed my FDD when AOL stopped sending me floppy
disks in the mail, every week.
Doesn’t work: it tells me /dev/fd0 is not a valid block device
sorry, forget my comment above, must’ve been christmas dinner acting up. Ofcourse there has to be a floppy in the drive to mount…