Linux Commands Examples

A great documentation place for Linux commands

fdformat

low-level format a floppy disk


see also : mkfs

Synopsis

fdformat [options] device


add an example, a script, a trick and tips

: email address (won't be displayed)
: name

Step 2

Thanks for this example ! - It will be moderated and published shortly.

Feel free to post other examples
Oops ! There is a tiny cockup. A damn 404 cockup. Please contact the loosy team who maintains and develops this wonderful site by clicking in the mighty feedback button on the side of the page. Say what happened. Thanks!

examples

0
source
            
if [ $1 == "format" ]; then
sudo fdformat /dev/fd0H$2
sudo mkdosfs -v /dev/fd0H$2
sleep 5
fi
#
if [ $1 == "makeimage" ]; then

description

fdformat does a low-level format on a floppy disk. device is usually one of the following (for floppy devices the major = 2, and the minor is shown for informational purposes only):

/dev/fd0d360 (minor = 4)
/dev/fd0h1200 (minor = 8)
/dev/fd0D360 (minor = 12)
/dev/fd0H360 (minor = 12)
/dev/fd0D720 (minor = 16)
/dev/fd0H720 (minor = 16)
/dev/fd0h360 (minor = 20)
/dev/fd0h720 (minor = 24)
/dev/fd0H1440 (minor = 28)

/dev/fd1d360 (minor = 5)
/dev/fd1h1200 (minor = 9)
/dev/fd1D360 (minor = 13)
/dev/fd1H360 (minor = 13)
/dev/fd1D720 (minor = 17)
/dev/fd1H720 (minor = 17)
/dev/fd1h360 (minor = 21)
/dev/fd1h720 (minor = 25)
/dev/fd1H1440 (minor = 29)

The generic floppy devices, /dev/fd0 and /dev/fd1, will fail to work with fdformat when a non-standard format is being used, or if the format has not been autodetected earlier. In this case, use setfdprm(8) to load the disk parameters.

options

-n, --no-verify

Skip the verification that is normally performed after the formatting.

-V, --version

Output version information and exit.

-h, --help

Display help and exit.

availability

The fdformat command is part of the util-linux package and is available from ftp://ftp.kernel.org/pub/linux/utils/util-linux/.


see also

fd, setfdprm, mkfs , emkfs


author

Werner Almesberger (almesber[:at:]nessie.cs.id.ethz[:dot:]ch)

How can this site be more helpful to YOU ?


give  feedback