mirror of
https://github.com/foxlet/macOS-Simple-KVM
synced 2024-11-22 03:03:06 +00:00
[DOCS] Add instructions to create a disk.
This commit is contained in:
parent
163ff33f7b
commit
6f9b8f90b0
1 changed files with 13 additions and 2 deletions
15
README.md
15
README.md
|
@ -7,7 +7,18 @@ Better instructions will be available in the future, but for now, here's how to
|
|||
Run `jumpstart.sh` to get some basic installation media for macOS.
|
||||
|
||||
## Step 2
|
||||
Run `basic.sh` to start the machine and install macOS.
|
||||
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.
|
||||
Look at the `docs` folder for more information on adding passthrough hardware, set up tunnel networking, and enable sound features.
|
||||
|
|
Loading…
Reference in a new issue