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
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
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