1
0
mirror of https://github.com/foxlet/macOS-Simple-KVM.git synced 2024-06-26 16:38:38 +02:00
Go to file
2019-04-25 20:59:39 -04:00
docs [DOCS] Minor note. 2019-04-25 20:59:39 -04:00
firmware Add tools, jumpstart, and firmware. 2019-04-22 23:20:12 -04:00
tools [TOOLS] Add debug script. 2019-04-25 16:48:18 -04:00
.gitignore Add tools, jumpstart, and firmware. 2019-04-22 23:20:12 -04:00
basic.sh [TOOLS] Clean up QEMU scripts. 2019-04-25 16:59:22 -04:00
ESP.qcow2 [ESP] Update Clover to r4920. 2019-04-25 19:08:31 -04:00
jumpstart.sh [TOOLS] Clean up QEMU scripts. 2019-04-25 16:59:22 -04:00
README.md [DOCS] Update README. 2019-04-25 16:57:52 -04:00

macOS-Simple-KVM

Documentation to set up a simple Q35 VM based in QEMU, accelerated by KVM.

Better instructions will be available in the future, but for now, here's how to get started:

Dependencies

You need to have qemu, python and the KVM extensions installed for this project.

Step 1

Run jumpstart.sh to get some basic installation media for macOS.

Step 2

Create an empty hard disk using qemu-img

qemu-img create -f qcow2 MyDisk.qcow2 64G

and add it to the end of basic.sh

    -drive id=SystemDisk,if=none,file=MyDisk.qcow2 \
    -device ide-hd,bus=sata.4,drive=SystemDisk \

Then run basic.sh to start the machine and install macOS.

Step 3

Look at the docs folder for more information on adding passthrough hardware, set up tunnel networking, and enable sound features.