User Tools

Site Tools


os:linux:general:vmware_cursor

This is an old revision of the document!


Jittery Mouse in VMWare for Linux Guest

This was driving me crazy. My mouse was constantly flickering as I'd move it around the screen in my Linux (Ubuntu 20.04) guest. The VMWware help for this was also utterly useless: Install vmware-tools (really open-vm-tools). I finally came across some older posts on Linux forums saying that turning off “HWCursor” in xorg.conf did the trick and, spoiler alert, that worked.

The xorg.conf File

All you need to do is drop this file in /etc/X11/ and reboot (or restart X) and you should be good to go:

xorg.conf
Section "Device"
        Identifier      "Configured Video Device"
        Option          "HWCursor" "Off"
EndSection
 
Section "Monitor"
        Identifier      "Configured Monitor"
EndSection
 
Section "Screen"
        Identifier      "Default Screen"
        Monitor         "Configured Monitor"
        Device          "Configured Video Device"
        Option          "HWCursor" "Off"
EndSection
os/linux/general/vmware_cursor.1617051917.txt.gz · Last modified: 2021/03/29 21:05 by jay