Lubuntu – installing VNC server

I use vnc to access graphic interface from my PC to cubieboard that runs on lubuntu. I have chosen tightvncserver and spent some time to configure and run it. Also to my surprise it took me a while to set it up correctly. This guide was the most helpful how-to but I needed to make some changes so I’ve written this post.

To check if you have any version of VNC installed type:

dpkg --get-selections | grep vnc

If you don’t have it then install tightvncserver:

apt-get install tightvncserver

Run the command vncpasswd to define a vncpasswd as depicted bellow.

 

Type tightvncserver and config files are created.

Type tightvncserver -kill :1 to kill that running session.

Configure  ~/.vnc/xstartup file as:

#!/bin/sh
xsetroot -solid grey
export XKL_XMODMAP_DISABLE=1
#autocutsel -fork
openbox &
/usr/bin/lxsession -s Lubuntu &

Start vnc again with tightvncserver :1 and get the TCP port from the log file.

My VNC was opened at TCP port 5901 so this port has to be used if I want to connect from VNC viewer. I have installed vncviewer on my win7 PC:

TightVNC server is up and running on Lubuntu and connection from VNC client is established. 🙂

Autostart tightvnc server

One simple way to autostart tightvncserver is to configure user autologin and start vnc server in lxsession autostart script (I used autologin in my previous post). The only needed configuration to enable autologin of the unix user (user linaro in my case) is to update the /etc/lightdm/lightdm.conf file with the following lines:

[SeatDefaults]
autologin-user=linaro
autologin-user-timeout=0
greeter-session=lightdm-gtk-greeter
user-session=Lubuntu

Once the user autologin is configured, add the line @/usr/bin/tightvncserver :1 to autostart VNC in lubuntu autostart file:

sudo mcedit /etc/xdg/lxsession/Lubuntu/autostart

VNC is now available also after the reboot. 😎

Whereas most VNC servers share your desktop, tightvnc creates a completely new desktop, not attached to any actual screen. This makes it much less useful for some things (like remote help), but much more useful for others (like creating a public area for collaboration). If you decide for x11vnc you can try another guide, that I found after I spent the time with tightvncserver described in this post. There are many types of vnc server 🙄 that you can check.

 

UPDATE

CHECK if the file ~/.cache/lxsession/Lubuntu/run.log is not increasing in size. My file was increasing ~100MB a day.

 ll ~/.cache/lxsession/Lubuntu/

This message was added to the run.log file quite often:

** Message: app.vala:59: Launching /usr/bin/tightvncserver :1 (null)
A VNC server is already running as :1
** Message: app.vala:73: /usr/bin/tightvncserver exit with this type of exit: 25088
** Message: app.vala:91: Exit not normal, reload

In my original post I had  ~/.vnc/xstartup file this line: /usr/bin/lxsession -s Lubuntu -e LXDE &

I removed “-e LXDE” and the ~/.cache/lxsession/Lubuntu/run.log file is not increasing now. This is now stated as confirmed bug of not rotating logs of lxsession in ubuntu: bugs.launchpad.net/ubuntu/+source/lxsession/+bug/1376380
The new config line is:

/usr/bin/lxsession -s Lubuntu &

Remarks

Other useful posts with lubuntu topic:

Posts with cubieboard2 tips:

Mini solar projects posts:


Related Posts

WiFi Access Point Bridge with Raspberry Pi 3 – ETH to WLAN

WiFi Modes

A Raspberry Pi WiFi Extender is a cheap and power efficient way of increasing the total range of your WiFi Network. In my case I needed to extend a WiFi coverage within the same LAN[…]

Continue reading ...

Which single board computer to select?

My first SoC board was pcduino. Since it was one of the first boards and I used it 24/7. It gave me some experience and I really like that Allwinner SoC A10 with 1GB RAM and[…]

Continue reading ...

Apache+PHP on Cubieboard with Lubuntu

I executed the following steps to install apache with PHP on my cubieboard2 with lubuntu. Lets start with installation that will take about 25MB: sudo apt-get install apache2 sudo apt-get install php5 sudo /etc/init.d/apache2 restart[…]

Continue reading ...