[KLUG Members] duplicating floppy disk

Adam Williams members@kalamazoolinux.org
Wed, 13 Mar 2002 09:44:14 -0500 (EST)


>I have several floppy disks that I have to
>periodically create duplicates of for my students.  Is
>there an easy way in Linux to create an image of a
>floppy and then create duplicates from that image? 

dd if=/dev/fd0 of=floppy.image.dd bs=512
dd if=floppy.image.dd of=/dev/fd0 bs=512
dd if=/dev/fd0 of=/dev/fd1 bs=512

> Will it work with bootable floppys?

Yes