diff --git a/spice/README.md b/spice/README.md new file mode 100644 index 0000000..b54f8ab --- /dev/null +++ b/spice/README.md @@ -0,0 +1,21 @@ +# Spice +Notes on spice setup. + + +## Spice Agent +Spice agent can be used for more responsive mouse, etc. +Needs to be installed on guest. + +``` +apt update +apt install spice-vdagent +``` +Need to add this to Proxmox KVM startup: + +``` + -device virtio-serial-pci,id=virtio-serial0,max_ports=16,bus=pci.0,addr=0x5 \ + -chardev spicevmc,name=vdagent,id=vdagent \ + -device virtserialport,nr=1,bus=virtio-serial0.0,chardev=vdagent,name=com.redhat.spice.0 + +``` +