Tuesday, May 12, 2026

OS Emulation on Ubuntu 20

 

 

sudo apt update && sudo apt install qemu-system-x86

 

# Create a 1GB disk image 

qemu-img create -f qcow2 win95.qcow2 1G

qemu-img create -f qcow2 win95.qcow2 500M #500MB

 # Run

qemu-system-i386 -m 64 -cpu pentium \ -drive file=win95.qcow2,format=qcow2 \ -net nic,model=pcnet -net user \ -soundhw sb16 \ -vga cirrus \ -cdrom /path/to/windows95.iso \ -boot d

#My command

$ qemu-system-i386 -m 64 -cpu pentium -drive file=win95.qcow2,format=qcow2,index=0,media=disk -drive file=./isos/W95_FULL_AR.iso,index=1,media=cdrom -fda ./isos/Windows95a.img -boot c -vga cirrus

 

 

Resources:

https://archive.org/  #Locate isos


 

No comments:

OS Emulation on Ubuntu 20

    sudo apt update && sudo apt install qemu-system-x86   # Create a 1GB disk image   qemu-img create -f qcow2 win95.qcow2 1G qemu-i...