From b7f4b8d9d070717425f6d53069eed6028ecb698a Mon Sep 17 00:00:00 2001 From: Nils Freydank Date: Sun, 23 Jun 2024 12:11:00 +0200 Subject: [PATCH] control-vm.sh: Align default machine type w/ min QEMU version --- control-vm.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/control-vm.sh b/control-vm.sh index e2e0e5c..5efe756 100755 --- a/control-vm.sh +++ b/control-vm.sh @@ -8,7 +8,7 @@ # https://git.holgersson.xyz/nfr/control-vm # If that link does not work, feel free to drop me an email. -# Version: 2024-05-05 +# Version: 2024-05-23 # Author: Nils Freydank # License: MIT @@ -74,7 +74,9 @@ CPU_CORES="${CPU_CORES:-8}" EFI="${EFI:-True}" GUEST_NAME="${1}" LIVE_ONLY="${LIVE_ONLY:-}" -MACHINE="${MACHINE:-pc-q35-9.0}" +# Keep low default aligned with oldest tested version. +# Feel free to bump to latest version that you QEMU supports. +MACHINE="${MACHINE:-pc-q35-6.0}" MEMORY="${MEMORY:-16384}" NET="${NET:-}" NETDEV_NAME="vmnic-${GUEST_NAME}"