2019-04-22 07:25:21 +00:00
|
|
|
# macOS-Simple-KVM
|
|
|
|
Documentation to set up a simple Q35 VM based in QEMU, accelerated by KVM.
|
2019-04-22 22:08:10 +00:00
|
|
|
|
|
|
|
Better instructions will be available in the future, but for now, here's how to get started:
|
|
|
|
|
2019-04-25 20:57:52 +00:00
|
|
|
## Dependencies
|
|
|
|
You need to have `qemu`, `python` and the KVM extensions installed for this project.
|
|
|
|
|
2019-04-22 22:08:10 +00:00
|
|
|
## Step 1
|
|
|
|
Run `jumpstart.sh` to get some basic installation media for macOS.
|
|
|
|
|
|
|
|
## Step 2
|
2019-04-24 15:11:50 +00:00
|
|
|
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.
|
2019-04-22 22:08:10 +00:00
|
|
|
|
|
|
|
## Step 3
|
2019-04-24 15:11:50 +00:00
|
|
|
Look at the `docs` folder for more information on adding passthrough hardware, set up tunnel networking, and enable sound features.
|