: I have indeed, and it works pretty well. What command-line options are you
: starting it with? The first time you do it, you'll need to tell it to load
: a Mac OS 9.2.x CD-ROM installer in order to have something to boot from
: and install the OS.
This is what's in qemu.command:
#!/bin/bash
cd "$(dirname "$0")"
./qemu-system-ppc -L pc-bios -boot d -M mac99,via=pmu -m 512 \
-prom-env 'auto-boot?=true' -prom-env 'boot-args=-v' -prom-env 'vga-ndrv?=true' \
-drive file=MacOS_9.2.2.iso,format=raw,media=cdrom \
-drive file=MacOS9.2.img,format=raw,media=disk \
-netdev user,id=network01 -device sungem,netdev=network01 \
-device VGA,edid=on \
This is my qemu folder (I tried it with both a powermacG4 iso and an eMac iso with the same result).
Tried seeing if I could change the blank image to qcow format... nothing.