Mount floppy disk image (*.img) as virtual floppy drive

8

Title says it all. I am looking for some software that will allow me to mount a floppy disk image (*.img) as a virtual floppy drive...similar I suppose to mounting an ISO image to a virtual optical drive.

I have tried a few things but nothing seems to work.

Edit: I am using Windows 98 (...old, I know!)

Matthew Layton

Posted 2013-01-18T23:40:18.137

Reputation: 586

Finding software that'll still work in Win98 still may be a lot harder than you think. try getting that img file loaded on a real floppy first, then get an old floppy drive, or usb floppy or something. What exactly are you trying to do? – MDT Guy – 2013-01-19T00:23:46.703

@MDTGuy, got some old disk images of things like Microsoft QuickC which I want to install, without having to load 12 images to disk – Matthew Layton – 2013-01-19T14:28:13.663

Answers

5

I have used Virtual Floppy Drive in the past. Im fairly certain it supports .img files.

Keltari

Posted 2013-01-18T23:40:18.137

Reputation: 57 019

Thanks, but does not work with Win9x, however my machine dual boots with Win2k so using that – Matthew Layton – 2013-01-19T14:26:59.640

I was using it when I was working on Windows XP and 7. But I get BSOD in Windows 8... – Jet – 2013-04-06T18:41:09.587

1

Try FileDisk (also comes bundled with WinImage):

FileDisk is a virtual disk driver for Windows that uses one or more files to emulate physical disks. A console application is included that let you dynamically mount and unmount files. An example of use for this driver is if you have made plans spending the weekend writing a RAID driver for NT but find you are short of disks. FileDisk can also use CD/DVD images.

FileDisk will use sparse files as disk images if the underlying file system supports it. A sparse file is a file where suficiently large blocks of zeros aren't allocated disk space. To see how much disk space a file actually uses right click on the file and choose Properties. If you for example create a sparse file of 4GB, mount it in FileDisk and format it to NTFS, it will only take up 24MB on disk but look like a normal disk of 4GB. When you copy files to it the used disk space will automatically increase.

Usage:

filedisk /mount  <devicenumber> <filename> [size[k|M|G] | /ro | /cd] <drive:>
filedisk /umount <drive:>
filedisk /status <drive:>

Karan

Posted 2013-01-18T23:40:18.137

Reputation: 51 857