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

36 lines
1020 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>
## 快捷键
| 快捷键 | 说明 |
|-------|-----|
| Ctrl+b, [ | 进入复制模式此时的操作与vi/emacs相同按q/Esc退出光标键和Pg Up/Dow 操作翻页滚屏 |
| Ctrl+b, ” | 将当前面板平分为上下两块 |
| Ctrl+b, % | 将当前面板平分为左右两块 |
| Ctrl+b, x | 关闭当前面板 |
| Ctrl+b, o | 在当前窗口中选择下一面板 |