We have a project involving linux programming. Unfortunalty, we have only an ssh interface, and not a convinient graphic one. What can we do? We heard that xterm can solve our problems, but we couldn't run it properly (We get: cant open DISPLAY, depite the fact that we tried DISPLAY=:0.0 and export DISPLAY=:0.0),and despite the fact that we have roots permmissions.

We found some issues on the linux forums, for example http://www.linuxquestions.org/questions/slackware-14/xterm-error-display-not-set-583271/ , but it didn't help...

How we can convert to a grqphic interface?

Many Thanks!

link|improve this question
feedback

migrated from stackoverflow.com Nov 2 '11 at 20:29

This question came from our site for professional and enthusiast programmers.

2 Answers

type

ssh -X username@remote_machine

-X Enables X11 forwarding. This can also be specified on a per-host basis in a configuration file.

but to make this work make sure that "X11Forwarding" directive in /etc/ssh/sshd_config in the remote server is set to "yes"

link|improve this answer
feedback

Take a look at X11 forwarding.

You might look at Xming & X2go.

link|improve this answer
How does on use X11 forwarding? – Simon Sheehan Nov 8 '11 at 21:12
feedback

Your Answer

 
or
required, but never shown