[VMWare] pointer invisible after update in guest Kali

Nov 26, 2025 by Arnaud Stoz | 45 views

Virtualization

https://cylab.be/blog/457/vmware-pointer-invisible-after-update-in-guest-kali

After running a apt upgrade in your kali vm in VMWare, you might have been surprised to see your cursor disappear.

Solution

You need to disable the HWCursor setting in you kali VM. To do so:

  1. create a Xorg configuration override:
sudo mkdir -p /etc/X11/xorg.conf.d
sudo vim /etc/X11/xorg.conf.d/20-vmware.conf
  1. add the following in the file
Section "Device"
    Identifier "VMware SVGA"
    Driver "vmware"
    Option "HWCursor" "off"
EndSection
  1. save :wq and reboot sudo reboot

This blog post is licensed under CC BY-SA 4.0

This website uses cookies. More information about the use of cookies is available in the cookies policy.
Accept