NotePublic/Software/Application/Tmux/Tmux_的使用.md

24 lines
623 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Tmux 的使用
tmux 可在远程登录的情况下保证链接断开后程序仍然能在后台保持运行。tmux 会保持运行,并且成为宿主程序。
使用 tmux 新建一个 session 的命令如下:
tmux new -s <session name>
断开连接,需要断开一个 session 的快捷键如下:
ctrl+b, d
列出当前全部可连接的 session 命令如下:
tmux ls
在断开的情况下,重新连接到某 session 命令如下:
tmux attach -t <session name>
如果想关闭某 session可通过以下命令实现
tmux kill-session -t <session name>