Hi,

On Tue, 22 May 2007 00:30:46 +0800 Andrew Lowe <[EMAIL PROTECTED]> wrote:

>       I have the situation where I have to connect to a remote,
> it's still in my office but X will be running across the network, Sun
> server so that I can run a CAD system. In the past I've done this
> from Windows using telnet and an X emulator, exporting the DISPLAY
> variable etc, but now I want to be able to do this from the linux
> box. I've tried what I've done under Windows in the past but the Sun
> machine can't find my X server, even though I'm in a graphical X
> window when I type the commands to initiate the remote X session.
>
>       My question is, is there anything "special" that I have to do
> so that the linux X server is listening to "the outside world" so
> that the Sun box can create the connection and get X displaying on my
> linux box?

Yes. Usually, the X server is supposed to only listen on localhost
(127.0.0.1), if at all on TCP ports, that is (it might be listening
only on a UNIX socket).

That's only one part, though. The other is X Authorization. It depends
a bit on the way you use to start X, but it should be active. You
probably need to transport your auth cookie to the target. See XAUTH(1)
for all the details.

However, the usual way to use remote X-based programs is just to let
SSH do that. It can provide a tunnel for X. This is especially easy if
the remote SSH server daemon has set its "X11Forwarding" configuration
setting set to "yes" (otherwise, it is really a bit harder and not
suggested). Then, you just would connect using "ssh -X [EMAIL PROTECTED]" and
that's it, SSH will care for creating a socket on the remote machine
and set the DISPLAY variable accordingly.


-hwh
-- 
[EMAIL PROTECTED] mailing list

Reply via email to