Desktop not showing well using vncserver on ubuntu 15.10
Solution 1:
Simply start vncserver with the command:
/usr/bin/vncserver -geometry 1024x768 -depth 24 :0
- geometry: define the resolution
- depth: define color depth
If you want to automatically start it at boot, add it into /etc/rc.local
sudo cat "/usr/bin/vncserver -geometry 1024x768 -depth 24 :0" >> /etc/rc.local