1. tmux 설치
# Amazon Linux 2
yum install -y tmux
# Ubuntu
apt install -y tmux
2. 자주 쓰는 명령어
2-1. 세션 관련 명령어
# tmux session create
tmux
# tmux session create(set session_name)
tmux -new -s <session_name>
# tmux session out
Ctrl+b, d
# tmux session exit
exit
# tmux session attach
tmux attach-session -t <session_name>
# tmux session list
tmux ls
2-2. 그 외 명령어
# 세션을 상하로 분리함
Ctrl+b, "
# 세션을 좌우로 분리함
Ctrl+b, %
# 분리된 윈도우 간의 이동
Ctrl+b, <방향키(상하좌우)>
'IT Study > AWS & Server, Network' 카테고리의 다른 글
[AWS, Docker] Docker Image build & Push ECR (0) | 2022.04.24 |
---|---|
2021 전국기능경기대회 클라우드컴퓨팅 - 1과제 (0) | 2022.02.16 |
[Linux] ssh key pair 추가, 변경 (0) | 2021.12.21 |
[AWS] aws cli / Security Group Create, Delete / 보안그룹 생성, 삭제 (0) | 2021.10.14 |
[AWS] aws cli / EC2 instance IAM setup / EC2 IAM 설정 (0) | 2021.10.14 |