This commit is contained in:
Rony Lee 2022-07-24 20:47:59 +08:00 committed by GitHub
commit e4867f5e83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 3 deletions

View File

@ -6,7 +6,7 @@ OVMF=$VMDIR/firmware
#export QEMU_AUDIO_DRV=pa
#QEMU_AUDIO_DRV=pa
qemu-system-x86_64 \
args=(
-enable-kvm \
-m 2G \
-machine q35,accel=kvm \
@ -26,3 +26,9 @@ qemu-system-x86_64 \
-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[@]}"

View File

@ -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[@]}"

View File

@ -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[@]}"