If you are comfortable with the command line, we solved it as follows:
- ssh into the robot
- make sure the line in
/etc/apt/sources.list
starting withdeb-src
is not commented - Install screen and x11vnc:
- apt-get update
- apt-get install screen
- apt-get install x11vnc
- Add the following line to
/etc/rc.local
(obviously, somewhere aboveexit 0
) so that vnc server is started automatically:screen -dmS vnc x11vnc -forever -clip 800x600+114+85 -scale 734x576
- Reboot robot and test with a vnc client.
You may need to play with the clipping and scaling since they may vary depending on the linux version.