Windows 98 Qcow2 Full May 2026

| Issue | Solution | |-------|----------| | USB not supported | Use serial/PS/2 devices only | | >512 MB RAM crashes | Limit VM to 512 MB, set MaxFileCache=524288 in System.ini | | No modern browser | Use LAN sharing + proxy to legacy web | | QCOW2 corruption on host crash | Enable cache=unsafe only for testing | | No SSE2 instructions | Use -cpu pentium3 (not -cpu host) |

Even with a "full" image, issues arise. Here are fixes:

| Problem | Solution | | :--- | :--- | | Blue Screen: Windows Protection Error | Your CPU is too new. Add -cpu 486 or -cpu pentium to the QEMU command to disable CPUID instructions that Win98 hates. | | No Sound in Games | Ensure you use -soundhw sb16, not -device AC97. Games from 1998 only talk to the Sound Blaster 16 via IRQ 5. | | Mouse Acceleration is Wild | Download and install the official Windows 98 USB Supplement inside the VM. Then use the usb-tablet device flag. | | Qcow2 file is 15GB but VM says disk full | You need to expand the disk. qemu-img resize win98.qcow2 +10G then use Partition Magic (a retro tool) inside the VM to extend C:. | windows 98 qcow2 full


You can often find pre-installed "full" QCOW2 images on archive sites or repositories dedicated to legacy software preservation.

Downloading the image is step one. Running it correctly is step two. The default QEMU settings will be sluggish. You need this optimized command. | Issue | Solution | |-------|----------| | USB

Save the following as run_win98.sh (Linux/Mac) or run_win98.bat (Windows with QEMU installed):

qemu-system-x86_64 \
  -machine pc-i440fx-2.1,accel=kvm \
  -cpu pentium2 \
  -m 256 \
  -hda /path/to/your/windows98.qcow2 \
  -vga cirrus \
  -soundhw sb16 \
  -netdev user,id=net0 -device ne2k_pci,netdev=net0 \
  -rtc base=localtime \
  -usb -device usb-tablet \
  -display gtk \
  -k en-us

Why manage a fragile, 25-year-old OS? With qcow2, you don't. You can often find pre-installed "full" QCOW2 images

QEMU Command Line:

Proxmox UI: If you import the qcow2 into Proxmox, snapshots are one click under the VM hardware tab.

Pro tip: Before installing any driver pack or running a random .exe from an old CD, take a snapshot. Windows 98 has no System Restore; the qcow2 snapshot is your System Restore.