1
0
Fork 0
mirror of https://github.com/foxlet/macOS-Simple-KVM.git synced 2024-11-17 00:29:41 +01:00

Update README.md

This commit is contained in:
notAperson535 2021-12-10 15:25:51 -05:00 committed by GitHub
parent d5c6f16960
commit adc084014a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -31,13 +31,12 @@ Run `jumpstart.sh` to download installation media for macOS (internet required).
## Step 2 ## Step 2
Create an empty hard disk using `qemu-img`, changing the name and size to preference: Create an empty hard disk using `qemu-img`, changing the name and size to preference:
``` ```
qemu-img create -f qcow2 MyDisk.qcow2 64G qemu-img create -f qcow2 macOS.qcow2 64G
``` ```
and add it to the end of `basic.sh`: if you change the drive name, change the line below according to the new name in `basic.sh`:
``` ```
-drive id=SystemDisk,if=none,file=MyDisk.qcow2 \ -drive id=SystemDisk,if=none,file=macOS.qcow2 \
-device ide-hd,bus=sata.4,drive=SystemDisk \
``` ```
> Note: If you're running on a headless system (such as on Cloud providers), you will need `-nographic` and `-vnc :0 -k en-us` for VNC support. > Note: If you're running on a headless system (such as on Cloud providers), you will need `-nographic` and `-vnc :0 -k en-us` for VNC support.