Posted: . At: 7:03 PM. This was 4 months ago. Post ID: 19007
Page permalink. WordPress uses cookies, or tiny pieces of information stored on your computer, to verify who you are. There are cookies for logged in users and for commenters.
These cookies expire two weeks after they are set.



Sponsored



Running Mac OSX 9.2 in Qemu, this really works.


I have managed to run the old Mac OSX 9.2 in a Qemu virtual machine. This was very easy to install and it runs very well, using a 9 Gigabyte disk image to install the operating system.

Mac OSX 9.2 boot splash screen.
Booting Mac OSX 9.2 in qemu.

This is the script I used to run Qemu and run Mac OSX 9.2 in the virtual machine.

#!/bin/bash
cd "$(dirname "$0")"

qemu-system-ppc \
-L pc-bios \
-M mac99,via=pmu \
-m 512 \
-boot c \
-drive file=MacOS9.2.iso,format=raw,media=cdrom \
-drive file=MacOS9.2.img,format=raw,media=disk 

I used this live ISO image to install Mac OSX.

https://drive.google.com/file/d/13UdVSKFJcVASQWFk2-vKasvIKkaWh9OL/view?pli=1

Then run this command to create a disk image to install.

jcartwright@jcartwright-System-Version╼╸╸╸╸╸╸╾
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━◉:~/Documents$ qemu-img create -f raw MacOS9.2.img.img 9G
Formatting 'MacOS9.2.img.img', fmt=raw size=9663676416

The actual installation is very easy, all that is required is to initialize the disk volume, and then use the software utility to copy the operating system to the blank disk image.

Mac OSX 9.2 desktop.
The Mac OSX 9.2 desktop interface.

This was a fun experiment and this is good to play around with, I love the bar on the bottom of the screen with the icons on it. I wish a Linux version of this desktop environment existed.


Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.