Sunday, May 5, 2024
 Popular · Latest · Hot · Upcoming
15
rated 0 times [  15] [ 0]  / answers: 1 / hits: 36873  / 2 Years ago, sat, june 18, 2022, 10:28:23

I'm running a virtualbox ms dos 6.22 emulator and I need quite a lot of virtual floppy images filled with software.

Does anyone know a good program to efficiently create floppy images and fill them with my specified files??



It's for an Old School Gaming Night and we want it to be as authentic as possible.



Both software as ways to mount several floppys at once (or to mount, unmount and to mount the next floppy in quick succession) using the terminal are appreciated.


More From » 13.10

 Answers
3

You can create a blank floppy image with the command:



mkfs.msdos -C /path/imagefile.img 1440


On some systems /mkfs.msdos is under /sbin directory. Afterwards you can mount it as loopback device with command:



sudo mkdir /media/floppy1/
sudo mount -o loop /path/imagefile.img /media/floppy1/


To unmount, use the command



sudo umount /media/floppy1/


If you want to create an image from the physical floppy disk, use dd command (disclaimer - I didn't try the below as my floppy is gone! but should work) (and assume that's 1.44MB type floppy disk... 1.2MB ones should have gone at the time of DOS 6.22 )



dd bs=512 count=2880 if=/dev/fda of=/path/imagefile.img


Reference: man page of mkfs.msdos; Create mount and copy floppy disks images under linux


[#24597] Monday, June 20, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
corsee

Total Points: 479
Total Questions: 122
Total Answers: 106

Location: Barbados
Member since Sat, May 9, 2020
4 Years ago
;