with qemu, it might be possible:
http://wiki.ubuntuusers.de/QEMU
1. Edit /etc/apt/sources.list and uncomment the Universe apt repositories
2. sudo apt-get install qemu
3. mkdir ~/qemuImages
4. mkdir ~/qemuImages/FedoraCore1
5. cd ~/qemuImages/FedoraCore1
6. qemu-img create disk.img 20G
7. export SDL_VIDEO_X11_DGAMOUSE=0
8. qemu -boot -d -cdrom /dev/cdrom -m 512 disk.img
9. If your Fedora Core 1 CD is in the CD-ROM drive then qemu will boot the image and boot from the CD, then you can do the normal install routine. I did a "linux text" install. Mouse emulation was giving me problems, so I chose "No mouse."
Code:
qemu -fda ~/bootdisk/Dos4.01.img -hda windows98se.img -boot a
http://www.allbootdisks.com/download/dos.html
Quote:
|
qemu -cdrom /dev/cdrom -fda ~/bootdisk/Dos6.22.img -hda ~/qemu/windows.img -boot a
|
Solved