mirror of
https://github.com/foxlet/macOS-Simple-KVM.git
synced 2024-11-17 08:39:40 +01:00
15 lines
357 B
Bash
15 lines
357 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
sudo apt-get install qemu-system qemu-utils python3 python3-pip # for Ubuntu, Debian, Mint, and PopOS.
|
||
|
|
||
|
sudo apt-get install qemu uml-utilities virt-manager git \
|
||
|
wget libguestfs-tools p7zip-full make -y
|
||
|
|
||
|
./fetch-macOS-v2.py
|
||
|
|
||
|
qemu-img convert BaseSystem.dmg -O raw BaseSystem.img
|
||
|
|
||
|
qemu-img create -f qcow2 macOS.qcow2 64G
|
||
|
|
||
|
sudo ./basic.sh
|