Last active
January 27, 2025 00:55
-
-
Save plembo/21d4a1579850f7fe84301a90f4fcdf9a to your computer and use it in GitHub Desktop.
Revisions
-
plembo revised this gist
Aug 29, 2022 . 1 changed file with 1 addition and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,5 @@ # You need spice-vdagent Debian or Kali Linux installed to as KVM (libvirtd) guests do not automatically have qemu-guest-agent or spice-vdagent installed. This will prevent seamless movement of the mouse cursor between the guest and host desktop in Virtual Machine Manager (requiring the use of a Ctrl-Alt to release the cursor from the guest window). To cure this, install both qemu-guest-agent and spice-vdagent on each guest and reboot (the guests). -
plembo revised this gist
Jun 9, 2019 . 1 changed file with 1 addition and 10 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,16 +3,7 @@ Debian or Kali Linux installed to as KVM guests do not automatically have qemu-g This will prevent seamless movement of the mouse cursor between the guest and host desktop in Virtual Machine Manager (requiring the use of a Ctrl-Alt to release the cursor from the guest window). To cure this, install both qemu-guest-agent and spice-vdagent on each guest and reboot (the guests). ``` $ sudo apt install qemu-guest-agent -
plembo created this gist
Jun 9, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,20 @@ # You need spice-vdagent Debian or Kali Linux installed to as KVM guests do not automatically have qemu-guest-agent or spice-vdagent installed. This will prevent seamless movement of the mouse cursor between the guest and host desktop in Virtual Machine Manager (requiring the use of a Ctrl-Alt to release the cursor from the guest window). To cure this, install both qemu-guest-agent and spice-vdagent in the host and guest. On the host: ``` $ sudo apt install qemu-guest-agent $ sudo apt install spice-vdagent ``` On the guest: ``` $ sudo apt install qemu-guest-agent $ sudo apt install spice-vdagent ```