main
jebba 2022-02-22 13:11:43 -07:00
parent 82103b650e
commit 3d076ae44c
1 changed files with 21 additions and 0 deletions

21
spice/README.md 100644
View File

@ -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
```