Pick of the Week - Nov 10 [Show all picks]
Path Finder 5 - A feature-laden Finder replacement
Submit Hint Search The Forums LinksStatsPollsFAQHeadlinesRSS
12,000 hints and counting!


Click here to return to the '10.5: A few tips on using X11 in 10.5' hint
The following comments are owned by whomever posted them. This site is not responsible for what they say.
10.5: A few tips on using X11 in 10.5
Authored by: TheDreamer on Wed, Nov 7 2007 at 12:36PM PST
Doesn't work if I "ssh -X" into a remote system and try to start an X application (such as MatLab).

---
You may be a dreamer, but I'm The Dreamer, the definite article you might say!

[ Reply to This | # ]
10.5: A few tips on using X11 in 10.5
Authored by: jeremyp on Wed, Nov 7 2007 at 1:04PM PST
ssh X11 forwarding is broken with it. I suspect ssh doesn't know how to forward to a Unix socket. It's OK if you start the X server manually and set $DISPLAY to localhost:0

[ Reply to This | # ]
10.5: A few tips on using X11 in 10.5
Authored by: macfreek on Thu, Nov 8 2007 at 5:44AM PST

To enable xterm on remote computers:

On your LOCAL machine, edit /etc/ssh_config:

Host *
   ForwardX11 yes
   ForwardX11Trusted yes

On your REMOTE machines, edit /etc/sshd_config:

X11Forwarding yes



[ Reply to This | # ]
10.5: A few tips on using X11 in 10.5
Authored by: EatingPie on Thu, Nov 8 2007 at 4:14PM PST
>Doesn't work if I "ssh -X" into a remote system and try to start an X application (such as MatLab).

It's "ssh -Y" that does the trick.

---
-Pie


[ Reply to This | # ]