Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to erase a fat floppy ?

Status
Not open for further replies.

haneo

Programmer
Jan 2, 2002
274
CA
how to erase a fat floppy under linux ?
(Redhat 7.3 bash)
 
The following will low-level format a floppy, which destroys 100% of the disk...

fdformat /dev/fd0


If you want to high level format the floppy with a filesystem, the following will format in FAT32...

mkfs -t vfat /dev/fd0

...or in FAT16...

mkfs -t dos /dev/fd0

...or in ext3...

mkfs -t ext3 /dev/fd0


ChrisP ------------------------------------------------------------------------------
If somebody helps you, please click the link in the botton left hand corner that says "Mark this post as a helpful/expert post".
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top