Is it possible for me to SSH to another server in Linux (Ubuntu), run a program there but display it locally?

And is it possible for me to SSH to another server in my terminal, and configure it so that all graphical programs (Firefox, Emacs) run in that SSH session will be displayed locally?

link|improve this question

62% accept rate
feedback

3 Answers

up vote 10 down vote accepted

By adding the "-Y" flag to the ssh command, the display will automatically be redirected to your local computer.

ssh -Y <remoteip>

Then, if you start Firefox (or any other X application) in that ssh session, it will be displayed locally. (If you have a xserver running locally of course)

link|improve this answer
1  
Very clever. I have used ssh for years & never knew that existed. – DaveParillo Mar 29 '10 at 6:47
feedback

You are looking to do remote X. This is a good mini HOWTO.

link|improve this answer
feedback

You might also want to try this:

ssh <hostname> -X <program-name or its full path>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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