I recently upgraded from VMware 6.0.3 to VMware 6.5, after installing the latest VMwareTools, the mouse went haywire. I click at one place and X thinks its somewhere else. Basically the co-ordinate system seems messed up. There are two ways to fix this.

1. Replace vmmouse driver with mouse driver in xorg.conf
Open the xorg.conf file

1
sudo gedit /etc/X11/xorg.conf
1
2
3
Section "InputDevice"
Identifier  "VMware Mouse"
Driver      "vmmouse"

Scroll down to the Driver entry in that section and change vmmouse to mouse
Save and reboot.
This is just a minor fix, in some cases there might still be problems in full screen mode and you cant shift from the virtual machine to the host easily.

2. To fix all the above issues and enable proper vmmouse implementation in the guest,
Open the xorg.conf file

1
sudo gedit /etc/X11/xorg.conf

and add this to the xorg.conf file

1
2
3
Section "ServerFlags"
        Option      "AutoAddDevices" "false"
EndSection

Save the file and reboot.
This will enable true vmmouse and the mouse will track perfectly.

PS: I used sudo here, if you haven’t configured sudo on your system, enable it or just use the root shell.

Bookmark and Share