A Windows QXL WDDM DOD driver (Display-Only-Driver). Heavily based on Microsoft KMDOD example and XDDM QXL driver. QXL video driver and SPICE client for display. QXL/SPICE is a high-performance display method. However, it is not designed to offer near-bare metal performance. PCI GPU passthrough PCI VGA/GPU passthrough via OVMF. PCI passthrough currently seems to be the most popular method for optimal performance.
Example using SPICE and QXL for improved Graphics experience in the guest
This example is based on qemu-kvm (0.15.0) as installed in Fedora 15.Will first show how to do this manually, and second how to do it using the virt-manager tool.
For extensive details on SPICE, visit http://spice-space.org
Manually, using qemu-kvm command line directly
Introduction = Xspice is an X server and Spice server in one. It consists of a wrapper script for executing Xorg with the right parameters and environment variables, a module names spiceqxldrv.so implementing three drivers: a video mostly code identical to the guest qxl X driver, and keyboard and mouse reading from the spice inputs channel. Driver for QEMU QXL paravirt video (mirrored from sandmann. Qxldod/: QXL graphics driver for Windows 8 and later. (build virtio-win-0.1.103-2 and later) So stable is not fresh enough while latest contains both.
The simplest part is adding the qxl graphics device to the guest. By adding -vga qxl
:
You'll see a normal SDL window pop up, and if you poke inside the guest you'll find that X is using the qxl device to display:
Qxl Driver Macos
However, this is not enough to use SPICE. We need to enable the spice server in qemu-kvm. We also need a client to view the guest. So first be sure the client is installed:
To keep it simple, we'll not require authentication and simply bind the server to 127.0.0.1 on port 5900.
This will not pop up an SDL window, so launch the client to connect to the guest.
We're getting closer. Now the only thing left is to improve the experience byenabling the spice agent communication channel between the host and the guest (you wanted copy and paste between host and guest right? ;)
This part is a bit arcane. We need to add a virtio-serial device to the guest, and open a port for the spice vdagent. We also need to install the spice vdagent in guest. Be sure the agent is running (and for future, started automatically).
First the guest side, since the guest is running.
Now stop the guest and we'll build up the hostside qemu-kvm commandline.We need to add the virtio-serial device: -device virtio-serial-pci
We need to add a port for spice in that device: -device virtserialport,chardev=spicechannel0,name=com.redhat.spice.0
And we need a spicevmc chardev for that port: -chardev spicevmc,id=spicechannel0,name=vdagent
It's important that the virserialport chardev=
option matches the id=
given the chardev (spicechannel0
in this example). It's also important that the port's name=
is com.redhat.spice.0
, because that's the namespace spice-vdagentd is looking for in the guest. And finally, you need to specify name=vdagent
so spice knows what this channel is for.
So we launch the guest one last time with the complete command line:
And kick off a spice client:
Now you can login to the guest, and you'll still see the qxl display device. In addition, you'll see the virtio-serial port:
Now test it out. Grab some text and copy it to the clipboard in the guest.(In gnome-terminal it's Shift-Ctrl-C to copy). And paste it in the host (again, Shift-Ctrl-V to paste in gnome-terminal).
Enabling SPICE using virt-manager
This assumes you've already installed a guest with virt-manager or virt-install and it's shut off.
Qxl Driver Windows 98
Start virt-manager, and open your VM by double clicking on it. Click the virtual hardware details (lightbulb).
First we need to make the Video card a qxl device. Click on Video, and in the Model pulldown, choose, qxl. And Apply.
Next we need to change the display from VNC to Spice. Click on Display VNC, and in the Type pulldown, choose Spice. And Apply. You'll be prompted to add the Spice agent channels, click Yes. (notice the additional Controller Virtio Serial too).
Now start the VM. virt-manager has a spice-gtk client built-in. So you don't need to fuss with a manual spice client like you did above. You still need to be sure that the guest has spice-vdagent installed and running. In the guest:
And you're done. Test copy and paste and enjoy.