Virt-viewer

From wikinotes

Standard libvirt viewer. Also see spice .

Documentation

homepage https://virt-manager.org/

Install

Host

sudo pacman -S virt-viewer

Guest

No install required

Usage

remote-viewer spice://127.0.0.1:${SPICE_PORT} & disown remote-viewer

Integration

qemu

sudo qemu-system-x86_64 \
  `# ...other qemu args...` \
  -daemonize   `# do not attach monitor, we connect by RDP` \
  -vga qxl \
  -spice port=5930,disable-ticketing \
  -device virtio-serial \
  -device virtserialport,chardev=spicechannel0,name=com.redhat.spice.0 \
  -chardev spicevmc,id=spicechannel0,name=vdagent \