如何断开tmux中的所有其他用户?
我有一个tmux会话,窗口太小,因为某个用户连接了某个地方。
如何告诉tmux断开所有连接的用户?
您可以使用<prefix> D
(默认前缀为Cb
)来select要分离的客户端; 它还会列出它们的上/下行以及上次使用的时间。 注意大写的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