Two mouse cursors when using virt-manager
Solution 1:
This is an issue with KVM, not just virt-manager.
It's possible to fix on the command-line for users not using virt-manager:
- Shut down your VM
-
Enter the following on the host command-line:
GUEST=your-vm-name virsh dumpxml "${GUEST}" > "/tmp/${GUEST}.xml"
- Open
"/tmp/${GUEST}.xml"
in any text editor (e.g. nano, vim). -
Within the
<devices>
tag, add this line (preferably near the other<input>
tags):<input type='tablet' bus='usb'/>
-
Enter the following on the command line to update the VM guest configuration:
virsh define "/tmp/${GUEST}.xml"
Solution 2:
As described here this can sometimes happen when creating a fully virtualized guest. The page I linked to also suggests a workaround: you can add a "Graphics Tablet" device to your VM.
To do this:
- Shut down the VM
- Click View -> Details in the menu
- Click the "Add Hardware" button (it's at bottom right corner of the dialogue)
- Select "Input" from the list on the right
- Select "EvTouch USB Graphics Tablet" from the drop-down
- Click "Finish":
- Click View -> Console to exit the settings view
Solution 3:
I had the same issue.
I managed to solve it by installing the spice Windows Guest Tools.