로컬 컴퓨터에서 tmux를 사용하고 있으며 일반적으로 동시에 여러 세션이 있습니다.
내가 일반적으로하는 일은 로컬에서 작동하는 다른 창이있는 세션과 세션 당 하나의 호스트에 여러 개의 창을 연결하는 다른 세션입니다.
tmux를 매일 사용하는 경우 세션 / 창 트리는 다음과 같습니다.
(TMUX on my local machine)
|
+- session 1: local
| \_ window 1: local shell
| \_ window 2: local shell
| \_ ...
|
+ session 2: somehost
| \_ window1: ssh user@somehost
| \_ window2: ssh user@somehost
| \_ ...
|
+ session 3: someotherhost
\_ window1: ssh user@someotherhost
\_ window2: ssh user@someotherhost
\_ ...
somehost & someotherhost에서 생성 된 tmux 세션에 연결하는 세션 2 및 세션 3을 일종의 원격 세션으로 만드는 방법이 있습니까?
위의 트리는 다음과 같습니다.
(TMUX on my local machine)
|
+- session 1: local
| \_ window 1: local shell
| \_ window 2: local shell
| \_ ...
|
+ session 2 linked to an existing session on somehost
| \_ window1: shell on somehost
| \_ window2: shell on somehost
| \_ ...
|
+ session 3 linked to an existing session on someotherhost
\_ window1: shell on someotherhost
\_ window2: shell on someotherhost
\_ ...
이 주제를 찾았지만 이것이 내가 원하는 일인지 잘 모르겠습니다. 호스트간에 tmux 소켓을 공유 할 수 있습니까?
내가 찾고있는 것이 로컬 컴퓨터, somehost & someotherhost에서 동일한 tmux 구성을 요구하지만 문제가되지 않는다고 가정합니다.