카테고리 없음

[Linux] screen 사용법

Unknown9 2013. 10. 21. 16:10
반응형

간단한 사용법은 아래 링크를 따라가세요.

https://kldp.org/node/18744


요즘 간단하게 사용하는 것은

screen -S [name]


접속후 CTRL+A, C -> create

CTRL + A, [number] create 된 screen 으로 이동.  없다면 현재 screen number를 하단에 표시한다.

CTRL + A, D : screen detach

CTRL + A. \ : 열려 있는 모든 윈도우를 닫고 종료함.


screen -R [name] : detached 된 screen을 재 접속함.

screen -wipe : dead 상태의 screen을 모두 삭제.

screen -list : list 를 출력



위의 링크를 보면 간단히 다 사용할 수 있을것 같다.


요즘 USB2Serial을 사서 사용하고 있는데 다른 terminal 보다 screen을 사용하면 간단하게 사용가능해서 편하게 쓰는 중이다.


           screen /dev/ttyUSB0 115200 à STB1 serial 연결


추가 사용 방법. split screen 이용 하는 방법을 아래를 보고 참고했다.


http://www.pixelbeat.org/lkdb/screen.html


KeyActionNotes
Ctrl+a cnew window 
Ctrl+a nnext windowI bind F12 to this
Ctrl+a pprevious windowI bind F11 to this
Ctrl+a "select window from listI have window list in the status line
Ctrl+a Ctrl+aprevious window viewed 
   
Ctrl+a Ssplit terminal horizontally into regionsCtrl+a c to create new window there
Ctrl+a |split terminal vertically into regionsRequires screen >= 4.1
Ctrl+a :resizeresize region 
Ctrl+a :fitfit screen size to new terminal sizeCtrl+a F is the same. Do after resizing xterm
Ctrl+a :removeremove regionCtrl+a X is the same
Ctrl+a tabMove to next region 
   
Ctrl+a ddetach screen from terminalStart screen with -r option to reattach
Ctrl+a Aset window title 
Ctrl+a xlock sessionEnter user password to unlock
Ctrl+a [enter scrollback/copy modeEnter to start and end copy region. Ctrl+a ] to leave this mode
Ctrl+a ]paste bufferSupports pasting between windows
Ctrl+a >write paste buffer to fileuseful for copying between screens
Ctrl+a <read paste buffer from fileuseful for pasting between screens
   
Ctrl+a ?show key bindings/command namesNote unbound commands only in man page
Ctrl+a :goto screen command promptup shows last command entered



반응형