mirror of
https://github.com/foxlet/macOS-Simple-KVM.git
synced 2024-11-16 16:19:41 +01:00
11 lines
255 B
Bash
Executable file
11 lines
255 B
Bash
Executable file
#!/bin/bash
|
|
|
|
sudo apt-get install qemu-system qemu-utils python3 python3-pip -y # for Ubuntu, Debian, Mint, and PopOS.
|
|
|
|
qemu-img create -f qcow2 macOS.qcow2 64G
|
|
|
|
./fetch-macOS-v2.py
|
|
|
|
qemu-img convert BaseSystem.dmg -O raw BaseSystem.img
|
|
|
|
sudo ./basic.sh
|