Reputation: 5959
Trying to get some graphical network simulator (ns2) code to display from my university's unix system. My local OS is Ubuntu 10 and I am accessing the unix system through PuTTY SSH client. When some prewritten code is executed, the following error prompt occurs:
no display name and no $DISPLAY environment variable
What can be done to get remotely executed code to display on my system? I am a total novice with unix and my attempts at redefining the $DISPLAY env var were spectacular failures. Thanks. Appreciated.
Upvotes: 12
Views: 32743
Reputation: 86333
Just do:
$ ssh -X [email protected]
This should launch ssh
with X forwarding enabled, when run from a terminal emulator like Xterm, gnome-terminal and the like. username
should be your account name on the remote computer, of course.
Upvotes: 19
Reputation: 2539
Enable X forwarding in PuTTY. Option is in Connection/SSH/Tunnels.
Upvotes: 3