Re: Is there anything missing when forwarding my X11 connections?

2025-02-09 Thread Vladimir Dergachev
This reminds me of the difference between ssh -X and ssh -Y options, maybe a look at ssh code will give you ideas. best Vladimir Dergachev On Fri, 7 Feb 2025, Christophe Lohr wrote: Hello,   Please excuse the naivety of my question; I'm trying to understand how things work. I try to forw

Is there anything missing when forwarding my X11 connections?

2025-02-09 Thread Christophe Lohr
Hello, Please excuse the naivety of my question; I'm trying to understand how things work. I try to forward a tcp X11 connection to the server's unix socket:   $ socat TCP-LISTEN:6001,fork UNIX-CONNECT:/tmp/.X11-unix/X0 Then I can use it:   $ DISPLAY=localhost:1 xeyes It works well... but onl

Re: Is there anything missing when forwarding my X11 connections?

2025-02-09 Thread Carsten Haitzler
On Fri, 7 Feb 2025 14:38:37 +0100 Christophe Lohr said: > Hello, > Please excuse the naivety of my question; I'm trying to understand how > things work. > > I try to forward a tcp X11 connection to the server's unix socket: >   $ socat TCP-LISTEN:6001,fork UNIX-CONNECT:/tmp/.X11-unix/X0 > > T