Install#
# Ubuntu/Debian
sudo apt install tmux
# CentOS/RHEL
sudo yum install tmux- 세션 관리
| 동작 | 명령 |
| 새 세션 생성 | tmux new -s 세션명 |
| 세션 분리(detach) | Ctrl+b → d |
| 세션 목록 | tmux ls |
| 세션 재접속 | tmux attach -t 세션명 |
| 세션 전환 | Ctrl+b → s |
| 세션 종료 | tmux kill-session -t 세션명 |
# Ubuntu/Debian
sudo apt install tmux
# CentOS/RHEL
sudo yum install tmux| 동작 | 명령 |
| 새 세션 생성 | tmux new -s 세션명 |
| 세션 분리(detach) | Ctrl+b → d |
| 세션 목록 | tmux ls |
| 세션 재접속 | tmux attach -t 세션명 |
| 세션 전환 | Ctrl+b → s |
| 세션 종료 | tmux kill-session -t 세션명 |