diff --git a/basic.sh b/basic.sh index 6f45e7b..bb0b4f0 100755 --- a/basic.sh +++ b/basic.sh @@ -26,6 +26,9 @@ args=( -device ide-hd,bus=sata.2,drive=ESP \ -drive id=InstallMedia,format=raw,if=none,file=BaseSystem.img \ -device ide-hd,bus=sata.3,drive=InstallMedia \ + ### add device/file that you have installed macos on + #-drive id=SystemDisk,if=none,file=MyDisk.qcow2 \ + #-device ide-hd,bus=sata.4,drive=SystemDisk \ ) qemu-system-x86_64 "${args[@]}" diff --git a/headless.sh b/headless.sh index bff4f74..7f11eb7 100755 --- a/headless.sh +++ b/headless.sh @@ -28,7 +28,7 @@ MOREARGS=() MOREARGS+=(-nographic -vnc :0 -k en-us) } -qemu-system-x86_64 \ +args=( -enable-kvm \ -m $MEM \ -machine q35,accel=kvm \ @@ -50,3 +50,6 @@ qemu-system-x86_64 \ -drive id=SystemDisk,if=none,file="${SYSTEM_DISK}" \ -device ide-hd,bus=sata.4,drive=SystemDisk \ "${MOREARGS[@]}" +) + +qemu-system-x86_64 "${args[@]}" diff --git a/virtio.sh b/virtio.sh index a0d59ee..75d0575 100755 --- a/virtio.sh +++ b/virtio.sh @@ -6,7 +6,7 @@ OVMF=$VMDIR/firmware #export QEMU_AUDIO_DRV=pa #QEMU_AUDIO_DRV=pa -qemu-system-x86_64 \ +args=( -nodefaults \ -enable-kvm \ -m 2G \ @@ -24,3 +24,6 @@ qemu-system-x86_64 \ -device vmxnet3,netdev=net0,id=net0,mac=52:54:00:09:49:17 \ -drive id=ESP,if=virtio,format=qcow2,file=ESP.qcow2 \ -drive id=MyDisk,if=virtio,format=qcow2,file=MyDisk.qcow2 \ +) + +qemu-system-x86_64 "${args[@]}"