Hello to everyone.
I've configured Linux Ubuntu 22.04 to be ready to pass thru my nvidia gpu to a guest OS. This time FreeBSD 13.1 is the guest OS. Inside the VM I have installed Xorg and xfce4. The problem is that the mouse does not move at all or it does not work as expected and I would like to understand why. For example,adding this code (called ps2 mouse) to virt-manager :
or this code,called "graphic tablet EvTouch USB,absolute movements":
my mouse does not move at all inside the xfce4 desktop env. of FreeBSD. Instead,adding the code below :
my mouse is moving,but its movements are relative. It means that everytime I need to release the mouse because I need it on the host system,I should press CTRL+ALT again and again and this is very annoying. In both cases it is not comfortable. Someone found a workaround for this problem ? I think that it's a wasting of resources to pass a whole USB controller only for passing thru a mouse,even because I think that I would not have the absolute movements (inside it and inside out the VM without pressing keys).
I've configured Linux Ubuntu 22.04 to be ready to pass thru my nvidia gpu to a guest OS. This time FreeBSD 13.1 is the guest OS. Inside the VM I have installed Xorg and xfce4. The problem is that the mouse does not move at all or it does not work as expected and I would like to understand why. For example,adding this code (called ps2 mouse) to virt-manager :
Code:
<input type="mouse" bus="ps2">
<alias name="input1"/>
</input>
or this code,called "graphic tablet EvTouch USB,absolute movements":
Code:
<input type="tablet" bus="usb">
<alias name="input4"/>
<address type="usb" bus="0" port="3"/>
</input>
my mouse does not move at all inside the xfce4 desktop env. of FreeBSD. Instead,adding the code below :
Code:
<input type="mouse" bus="usb">
<alias name="input3"/>
<address type="usb" bus="0" port="2"/>
</input>
my mouse is moving,but its movements are relative. It means that everytime I need to release the mouse because I need it on the host system,I should press CTRL+ALT again and again and this is very annoying. In both cases it is not comfortable. Someone found a workaround for this problem ? I think that it's a wasting of resources to pass a whole USB controller only for passing thru a mouse,even because I think that I would not have the absolute movements (inside it and inside out the VM without pressing keys).