Lubuntu 14.04 + TightVNC: remote mouse cursor is "X"

18,138

After researching into each command used in my xstartup file and the options available, I found the solution to be adding the following parameters to xsetroot:

-cursor_name left_ptr

So, my xstartup file now looks like this:

#!/bin/sh

xrdb $HOME/.Xresources
xsetroot -solid grey -cursor_name left_ptr
autocutsel -fork
lxsession -s Lubuntu -e LXDE

screenshot

Share:
18,138

Related videos on Youtube

user3018905
Author by

user3018905

Email: [email protected] Twitter: @iglvzx LinkedIn: israelgalvez Free Software Foundation Member #9943 Technical Support Hero. Developer behind GWhois.org - the most advanced Whois client in the world! Live, authoritative Whois lookups for domain names and IP addresses, DNS tools, and more!

Updated on September 18, 2022

Comments

  • user3018905
    user3018905 over 1 year

    I am connecting from my Windows 7 machine to my Lubuntu 14.04 server using TightVNC. Everything is working as expected except the remote mouse cursor only displays as an "X".

    screenshot

    My ./vnc/xstartup file is configured as follows:

    #!/bin/sh
    
    xrdb $HOME/.Xresources
    xsetroot -solid grey
    autocutsel -fork
    lxsession -s Lubuntu -e LXDE
    

    and to set up TightVNC on the server, I installed the following packages:

    • lubuntu-desktop
    • tightvncserver
    • autocutsel

    Do I need to install a package to get the remote mouse cursor to show up correcting when using TightVNC? Do I need to add a command to my xstartup file?