This is an old revision of the document!


VNC

Install the VNC Server on the Raspberry:
https://www.raspberrypi.org/documentation/remote-access/vnc/

$ sudo apt-get update
$ sudo apt-get install tightvncserver
$ tightvncserver

Start VNC Server:

$ vncserver :1 -geometry 1024x768 -depth 24

Stop the X Session:

$ service lightdm stop

Install the VNC-Client:
Install the client for and on your system.
http://www.tightvnc.com/download.php

Enable the Cursor:
Go to:

$ nano /home/pi/.vnc/xstartup

Add:

  1. cursor_name left_ptr

So it looks like that:

xsetroot -solid grey -cursor_name left_ptr

Autostart the VNC server:

$ cd /etc/init.d/
{{:vncboot.tar|}}

$ sudo nano vncboot
$ sudo chmod 755 vncboot
$ sudo update-rc.d -f lightdm remove
$ sudo update-rc.d vncboot defaults