How to make a floppy file image and mounting it in Linux
To make a file image of a floppy disk in Linux (like Ubuntu), you need (of course) a computer with a floppy drive (/dev/fd0). Insert the floppy you want to copy to an image file and issue the command: $ sudo dd bs=512 count=2880 if=/dev/fd0 of=floppy.img Block size (bs) and count above is for a 1,44 […]