kvm icon indicating copy to clipboard operation
kvm copied to clipboard

Add VNC capability

Open methadata opened this issue 9 years ago • 2 comments

Try to enable graphical VNC/SPICE capabilities to VMs

methadata avatar Oct 09 '16 20:10 methadata

after running the docker command to bring up a Windows kvm image, there is the command: docker run --name kvm -td --privileged -v /var/lib/libvirt/images/vm/win81e64.qcow2:/image/image
-e AUTO_ATTACH=yes bbva

how can I access the Windows via vnc or remote desktop?

lawnz avatar Jan 19 '17 02:01 lawnz

Currently this issue is not implemented yet. However, there are two ways of accessing graphically to you VM container:

  1. Passing parameters to qemu when launching the container (see -vnc options in qemu-kvm manpage)
  2. Connecting via RDP if the VM image has already RDP enabled and gets its IP via DHCP. You should only have to know the VM IP address.

Hope this helps :)

methadata avatar Jan 19 '17 08:01 methadata