Penguin
Annotated edit history of FloppyNotes version 3, including all changes. View license author blame.
Rev Author # Line
1 JohnMcPherson 1 !! Backing up/Restoring a disk image from/to floppy disk
2
3 AristotlePagaltzis 3 The dd(1) command in Linux is used to do direct dumps from one device (or file) to another. It is an excellent tool to create a disk image or to make a diskette from an image file (*.img). The command is invoked as follows:
1 JohnMcPherson 4
3 AristotlePagaltzis 5 # dd if=imagefile of=/dev/fd0 bs=72k
6 20+0 records in
7 20+0 records out
1 JohnMcPherson 8
3 AristotlePagaltzis 9 The records counts are dd(1)'s output to indicate how much was read and how much was written. In this example, a full 1.44MB floppy was written (20 * 72k). If you get a smaller block count, the image did not transfer correctly. If this is the case, it will usually be accompanied by a disk error.
1 JohnMcPherson 10
3 AristotlePagaltzis 11 Remember to label disks according to their contents if you want to keep track.
1 JohnMcPherson 12
3 AristotlePagaltzis 13 Under [Windows], RaWrite fulfills similar duties.
2 JohnMcPherson 14
15 ----
16 CategoryDiskNotes

PHP Warning

lib/blame.php:177: Warning: Invalid argument supplied for foreach()