windows10 : légère réécriture

This commit is contained in:
Ahurac 2024-03-08 23:48:58 +01:00
parent 195a76cc4a
commit 75bb9b68f7

View file

@ -1,15 +1,16 @@
#!/bin/sh -x #!/bin/sh -x
# Store VM name in environment variable
export QEMUSH_NAME
export QEMUSH_RAM=4G export QEMUSH_RAM=4G
export QEMUSH_BASE=kvm export QEMUSH_BASE=virtiofs,kvm
[ -z "$QEMUSH_NAME" ] && QEMUSH_NAME=$(basename "$0") [ -z "$QEMUSH_NAME" ] && {
export QEMUSH_NAME
QEMUSH_NAME=$(basename "$0")
}
# Launch the virtual machine # Launch the virtual machine
exec spice \ exec spice \
-drive file="$(pathof disk)",if=virtio \ -drive file="$(pathof disk)",if=virtio \
-net user,hostname="${QEMUSH_NAME}" \ -net nic -net user,hostname="${QEMUSH_NAME}" \
-usbdevice tablet \ -usbdevice tablet \
-name "$QEMUSH_NAME" \ -name "$QEMUSH_NAME" \
-device intel-hda -device hda-duplex,audiodev=snd0 \
"$@" "$@"