|
|
GNU/Linux Desktop Survival Guide by Graham Williams |
|
|||
The common geometry of a 3.5" floppy disk has 18 sectors per track
with two heads and 80 cylinders. Thus, optimising the dd
command to read the contents of a floppy we would use:
$ dd bs=2x80x18b if=/dev/fd0 of=/tmp/floppy.image 1+0 records in 1+0 records outThen to write to another floppy:
|
