[tmux] tmux에서 다른 모든 사용자를 어떻게 연결 해제합니까?

일부 사용자가 연결되어 있기 때문에 창이 너무 작은 tmux 세션이 있습니다.

tmux에 연결된 모든 사용자의 연결을 끊으려면 어떻게합니까?



답변

당신은 사용할 수 있습니다 <prefix> D (접두사이고 C-b기본적으로) 분리에있는 클라이언트를 선택하기 위해; 또한 마지막으로 사용한 시간뿐만 아니라 col / lines를 나열합니다. 대문자를주의하십시오 ( D예 : Shift+) d.

tmux의 detach-client옵션을 사용할 수도 있습니다

 detach-client [-P] [-a] [-s target-session] [-t target-client]
               (alias: detach)
         Detach the current client if bound to a key, the client specified
         with -t, or all clients currently attached to the session speci-
         fied by -s.  The -a option kills all but the client given with
         -t.  If -P is given, send SIGHUP to the parent process of the
         client, typically causing it to exit.

어느 하나로부터 <prefix>:다음 detach [options]또는 내부 TMUX 명령 라인에tmux detach [options]


답변

tmux a -dt <session-name>

a=attach
d=detach other clients (so only you can attach to this session)
t=target


답변