I had a go on this with VMware player. I created the vmx using an online service and then modified it a bit. The recipe:
* Create a VMware image using one of the online services, i.e <a href='http://www.easyvmx.com' target='_blank'>EasyVMX</a>. Set memory to about 32MB, add a small (500MB) HD and a floppy.
* Download the generated files and put them in a directory on your drive.
* Open the *.vmx-file and edit the floppy0 section to include
- Code: Select all
# Settings for physical floppy drive
floppy0.present = "TRUE"
floppy0.startConnected = "TRUE"
#floppy0.autodetect = "TRUE"
floppy0.fileType = "file"
floppy0.fileName = "freesco.038"
This will mount the FREESCO diskimage as a virtual floppy inside the VM.
* Download FREESCO and the related modules-package from <a href='http://freesco.sourceforge.net' target='_blank'>SourceForge</a>
* Unpack to a local directory
* Mount the FREESCO diskimage (<span style='font-family:Courier'>freesco.038</span>) using the loopback-trick:
- Code: Select all
$ mkdir floppy
$ mount -t auto -o loop ./freesco.038 ./floppy
* Copy network driver to mounted floppy image:
- Code: Select all
$ cp /path/to/modules038/modules-2.0.39/net/lance.gz ./floppy/router/drv
* Unmount the image:
- Code: Select all
$ umount floppy
* Now copy the FREESCO diskimage into the same directory that you put your generated VMware files.
* Start VMware player and load the FREESCO VM. It should boot from the floppy image and you should be able to set your virtual FREESCO up.
This is Linux country. On a silent night you can hear Windows reboot.