screen 사용 방법 정리

원격의 로봇에 ssh로 접속하여 작업을 수행할 경우,

  • 여러 개의 터미널이 필요하다면?
  • 어떤 작업을 수행해 놓고, ssh 접속을 끊고 싶다면? (물론 작업은 계속 수행하도록)

여러개의 터미널은 tmux로도 해결이 가능하지만, 작업을 수행해 놓고 ssh 접속만 끊고 싶다면 screen이 해결 방법이 될 수 있음.

설치

$ sudo apt install screen

별다른 설정은 필요하지 않고, 단순히 명령만 입력하면 실행. 옵션이 다음과 같이 있지만, 몇 개만 알면 사용하는데는 문제 없음.

$ screen -h
 Use: screen [-opts] [cmd [args]]
  or: screen -r [host.tty]
 Options:
 -4            Resolve hostnames only to IPv4 addresses.
 -6            Resolve hostnames only to IPv6 addresses.
 -a            Force all capabilities into each window's termcap.
 -A -[r|R]     Adapt all windows to the new display width & height.
 -c file       Read configuration file instead of '.screenrc'.
 -d (-r)       Detach the elsewhere running screen (and reattach here).
 -dmS name     Start as daemon: Screen session in detached mode.
 -D (-r)       Detach and logout remote (and reattach here).
 -D -RR        Do whatever is needed to get a screen session.
 -e xy         Change command characters.
 -f            Flow control on, -fn = off, -fa = auto.
 -h lines      Set the size of the scrollback history buffer.
 -i            Interrupt output sooner when flow control is on.
 -l            Login mode on (update /var/run/utmp), -ln = off.
 -ls [match]   or
 -list         Do nothing, just list our SockDir [on possible matches].
 -L            Turn on output logging.
 -Logfile file Set logfile name.
 -m            ignore $STY variable, do create a new screen session.
 -O            Choose optimal output rather than exact vt100 emulation.
 -p window     Preselect the named window if it exists.
 -q            Quiet startup. Exits with non-zero return code if unsuccessful.
 -Q            Commands will send the response to the stdout of the querying process.
 -r [session]  Reattach to a detached screen process.
 -R            Reattach if possible, otherwise start a new session.
 -s shell      Shell to execute rather than $SHELL.
 -S sockname   Name this session .sockname instead of ...
 -t title      Set title. (window's name).
 -T term       Use term as $TERM for windows, rather than "screen".
 -U            Tell screen to use UTF-8 encoding.
 -v            Print "Screen version 4.08.00 (GNU) 05-Feb-20".
 -wipe [match] Do nothing, just clean up SockDir [on possible matches].
 -x            Attach to a not detached screen. (Multi display mode).
 -X            Execute  as a screen command in the specified session.

실행시 screen 세션 이름 설정하기. 기본으로 부여되는 이름이 있지만 외우기 어려우므로, 사용자가 직접 지정 가능.

$ screen -S <session-name>

실행되어 있는 상태에서 세션과의 연결 끊기

Ctrl + A, d

실행되어 있는 세션에 다시 연결하기

$ screen -r <session-name>

실행되어 있는 세션 리스트 보기

$ screen -ls

팁.

screen를 실행해서 들어가면, 터미널 설정이 변경되어 PS1이 리셋되는 현상이 있는데, 이를 방지하려면 ~/.screenrc 파일에 다음과 같이 입력

$ vi ~/.screenrc

term screen-256color

screen를 실행하면, 이전 화면을 보는게 지원안됨. screen 내부 명령으로 해결해야 되는데,

Ctrl + A, Esc

이 상태에서, PgUp/PgDown, Up/Down으로 스크롤 가능.

끝!.

2 Replies to “screen 사용 방법 정리”

  1. 우연히 이것저것 찾아보다가.. 알게되었네… 이런 것도 하다니 멋진걸. 못본지 오래되었는데.. 잘 지내~~ 나 98 현진.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.