Linux:Creating floppy image file and copying files into it
May 29th, 2009
The fastest way to do it :
# mkdosfs -C floppydisk.img 1440 # mount -o loop floppydisk.img /media/cdrom # cp /path/to/files/* /media/cdrom/ # umount /media/cdrom
note: assuming /media/cdrom path is exists (most likely so), and you have root access.