1. ホーム
  2. tmux

[解決済み】tmuxで他のユーザーを全て切断するにはどうすればいいですか?

2022-04-03 22:51:52

質問

どこかのユーザーが接続しているため、tmuxのセッションのウィンドウが小さくなってしまいました。

接続されているすべてのユーザーを切断するようにtmuxに指示するにはどうすればよいですか?

解決方法を教えてください。

を使用することができます。 <prefix> D (ここで接頭辞は C-b デフォルトでは) また、それらの col/lines と最後に使用された時間も表示されます。大文字の D ということです。 シフト + 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]