December 7, 2009 · General · Email This Post
Share

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.

  • Share/Bookmark

Related Articles

7 Comments to “Tip:How to mount,unmount and format floppy disk in Ubuntu”

  1. KruyKaze says:

    What’s a floppy disk?

  2. joeYao says:

    I don’t have a floppy drive. Today, I don’t know what I can do with this. Maybe for bios flash.

  3. David says:

    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 :P

  4. nbensa says:

    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.

  5. SkipF says:

    I removed my FDD when AOL stopped sending me floppy
    disks in the mail, every week.

  6. Wiley says:

    Doesn’t work: it tells me /dev/fd0 is not a valid block device

  7. Wiley says:

    sorry, forget my comment above, must’ve been christmas dinner acting up. Ofcourse there has to be a floppy in the drive to mount…

Leave a Reply