Install Qemu: ============= Through ubuntu repo: sudo apt install qemu-system openbios* Through git source (May be unstable!): cd ~/Downloads git clone https://gitlab.com/qemu-project/qemu.git cd qemu git submodule init git submodule update --recursive sudo apt install ninja-build pip install sphinx sphinx_rtd_theme --break-system-packages ./configure --enable-sdl --enable-gtk make -j$(nproc) sudo make install *note, git source does not have gui, must access through vnc program (like KRDC) and visit the following URL: vnc://localhost:5900 Though 7.0 download: wget https://download.qemu.org/qemu-7.0.0.tar.xz tar xvJf qemu-*tar.xz cd qemu-7.0.0 pip install sphinx sphinx_rtd_theme --break-system-packages ./configure --enable-sdl --enable-gtk make -j$(nproc) sudo make install *Like git, it does not have gui, must access through vnc program (like KRDC) and visit the following URL: vnc://localhost:5900 Sources: https://branden-g.ca/Notes/Tech-Help/Linux-Repair/Linux-Apps-Setup/Linux-VM-help/Fix-macOS-X-ppc-boot-on-qemu-ubuntu.txt https://www.qemu.org/download/ Date OG: March 2022 Update v1: October 2024