From 50bed263394e399c3398b2c643bfa3f6b1674c98 Mon Sep 17 00:00:00 2001 From: Hippolyte Chauvin Date: Sun, 25 Jun 2023 21:53:19 +0200 Subject: [PATCH] =?UTF-8?q?Script=20de=20lancement=20de=20Windows=2010=20a?= =?UTF-8?q?vec=20QEMU=20{=20Ajout=20:=20option=20zoom-to-fit=20par=20d?= =?UTF-8?q?=C3=A9faut=20;=20support=20du=20son?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- share/qemu/scripts/windows10 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/share/qemu/scripts/windows10 b/share/qemu/scripts/windows10 index 8de6377..ea4bb8c 100755 --- a/share/qemu/scripts/windows10 +++ b/share/qemu/scripts/windows10 @@ -3,13 +3,13 @@ realpath="$(readlink -f "$0")" realname="$(basename "$realpath")" cd "$(dirname "$realpath")/.." exec screen -S "QEMU : ${realname}" -d -m qemu-system-x86_64 \ - -monitor stdio -enable-kvm \ + -monitor stdio -enable-kvm -display gtk,zoom-to-fit=on \ -bios /usr/share/edk2/x64/OVMF_CODE.fd \ -cpu host -smp "$(nproc)" \ -m 4G \ -drive "file=images/$(basename "$0").qcow2,if=virtio" \ -net nic -net "user,hostname=${realname}" \ - -audiodev pa,id=snd0 \ + -audiodev pa,id=snd0 -device ich9-intel-hda -device hda-output,audiodev=snd0 \ -usbdevice tablet \ -name "$realname" \ "$@"