TMUX command

Janice._.oooh·2021년 11월 19일
0
post-thumbnail

elements of tmux

  1. session : tmux를 실행하는 기본단위, 여러 윈도우로 구성
  2. window : 터미널 화면으로 세션 내에서 탭처럼 사용 가능
  3. pane : 하나의 윈도우 내에서의 화면 분할

add.) tmux는 기본적으로 명령어를 사용하기 위해선, prefix키로 Ctrl + b를 사용해야 한다.

$ sudo apt install tmux : tmux install

1. session command

$ tmux new -s [session_name] : create new session
$ tmux new -s [session_name] -n [window_name] : create new session and new window
$ exit : exit the session
$ tmux kill-session -t [session_name] : exit the session at outside the session
$ tmux ls : list of the sessions
$ tmux attach -t [session_number/session_name] : restart the session / recall the session
(Ctrl + b) + $ : change the session name

2. window command

(Ctrl + b) + d : stop the session
(Ctrl + b) + c : create the window
(Ctrl + b) + b + [number] : move the point of window
(Ctrl + b) + , : change the window name

3. pane command

(Ctrl + b) + % : separate the pane left and right
(Ctrl + b) + " : separate the pane up and down
(Ctrl + b) + 방향키 : move the point pane
(Ctrl + b) + q + [pane_number] : move the point pane
Ctrl + d : remove the pane
(Ctrl + b) + Alt + 방향키 : adjust the pane size

0개의 댓글