Solution:
1. Configure SSH on your pi. Use raspi-config to enable.
2. Download and install xming and putty for your windows machine.
3. Config your router to port forward all traffic to your internal IP (ie 192.168.1.5)
4. Note your external IP address. use whats my ip (google search) if you cant find it.
5. Open Putty and enter the external Ip into "Hostname (or IP)" section
-Connection = "SSH"
-Name the saved session and press save.
6. Now click Catagory SSH>X11. "Click enable X11 forwarding"
7. Open Xming after the install completes.
8. In putty click catagory "session" and click load.
9. Login into your rpi.
10. Type
Code: Select all
ssh -X <hostname> <application name>11. Enter your password and whalla the application launches.
Note the command must be -X not -x. As for the command itself I am not sure if this is the best way but its the one that works for me.
Thank you all for your help.
----------------------------------------------------------------------------------------------------------------------------------
Initial Question:
Hi all,
I have setup my pi and would like to launch iceweasel using ssh on my current machine. I connect to the pi using both putty or firessh. I then login as root and when i enter the command below:
Code: Select all
ssh -x raspberrypi iceweaselCode: Select all
error no display specifiedI have tried export DISPLAY=localhost:0.0 but still no joy.
Any advice?