From a658de6007d0b4792878fca7ca28db3bc6541996 Mon Sep 17 00:00:00 2001 From: Hippolyte Chauvin Date: Thu, 30 Nov 2023 10:12:58 +0100 Subject: [PATCH] qemu script linux-spice : ajout d'options pour spice --- qemu/bin/linux-spice | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/qemu/bin/linux-spice b/qemu/bin/linux-spice index 5b62412..a2faaf3 100755 --- a/qemu/bin/linux-spice +++ b/qemu/bin/linux-spice @@ -1,4 +1,8 @@ #!/bin/sh -ex exec linux \ - -vga qxl -spice port=5900,addr=127.0.0.1,disable-ticketing=on \ + -vga qxl \ + -device virtio-serial \ + -chardev spicevmc,id=vdagent,debug=0,name=vdagent \ + -device virtserialport,chardev=vdagent,name=com.redhat.spice.0 \ + -spice port=5900,addr=127.0.0.1,disable-ticketing=on \ "$@"