tmux 필요성
tmux 설치 (ubuntu)
$ sudo apt-get install tmux
$ tmux
tmux 개념
session 관련 명령어
# 새로운 세션 생성
tmux new -s (session_name)
# 세션 만들면서 윈도우랑 같이 생성
tmux new -s (session_name) -n (window_name)
# 세션 종료
exit
# 세션 목록
tmux ls
# 세션 다시 시작하기(다시 불러오기)
tmux attach -t session_number
# 세션 중단하기
(ctrl + b) d
# 스크롤하기
ctrl + b + [
# 특정 세션 강제 종료
tmux kill-session -t session_number
window 관련 명령어
# 새 윈도우 생성
(ctrl + b) c
# 새 윈도우 이동
(ctrl + b) b (숫자)
pane 관련 명령어
# 틀 나누기
(ctrl + b) % #좌우로 나누기
(ctrl + b) " #위아래로 나누기
# 틀끼리 이동하기
(ctrl + b) 방향키
(ctrl + b) q
(ctrl + b) o #순서대로 이동
# 틀 삭제
(ctrl + d)
# 틀 사이즈 조정
(ctrl + b) : resize_pane -L 10 #L,R,U,D 입력하면 상하좌우로 조절됨
(ctrl + b) (alt) 방향키
# 단축키 목록
(ctrl + b) ?
<Reference>
https://velog.io/@ur-luella/tmux-사용법
https://knackin.tistory.com/4
https://hbase.tistory.com/200
VScode - GitLab 연동 (SSH) (0) | 2022.05.30 |
---|---|
Terminal 실행 시 Train Log 저장 및 실시간 출력 (save and stream) (0) | 2022.05.30 |
Colab VScode 연동 (0) | 2022.05.29 |
VScode Terminal Permission Error (0) | 2022.05.29 |
Colab 연결 끊김 방지 (0) | 2022.05.27 |
댓글 영역