Tell me more ×
Raspberry Pi Stack Exchange is a question and answer site for users and developers of hardware and software for Raspberry Pi. It's 100% free, no registration required.

when i remote access the raspberry pi with software now installed i do not get to access the current session displayed on my tv, but rather a new session.
is there software to access the current running session so i can use the keyboard and mouse connected to my laptop to control my raspberry pi.
ATM i use putty and Xming to access my PI, but that creates a new user session instead of the active one.

share|improve this question
2  
Have you tried a VNC server? elinux.org/RPi_VNC_Server – Steven Devijver Jan 28 at 8:39
will try that when im home from work, tnx. – Tom Jan 28 at 8:40

3 Answers

You should install VNC.

Basically you need to follow the instructions here.

The basics are:

  1. Install tightvncserver: sudo apt-get install tightvncserver.
  2. Make a shell strict with the start command.
  3. Add an init script.
  4. Install the tightvnc viewer from the website.
  5. Connect up.

I might add more help later, if you need it.

share|improve this answer

You need x11vnc. This will allow you to connect to the same session on the TV.

share|improve this answer
This answer could do with expanding. – Alex Chamberlain May 3 at 9:51

You need to install x11vnc daemon on the linux distro with runs on Pi. Then run that command;

x11vnc -display :0 -usepw -noxdamage -ncache 10 -ncache_cr -listen IP_of_pi -allow allowed_ip_address

After ran the command, connect to pi with any VNC client.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.