Unix등의 프롬프트환경에서, 스크린전환프로그램. (SeeAlso 프로그램예찬)
쉘에서 screen을 입력하면 바로, 스크린모드로 들어간다. 이후 Ctrl-A 을 치고 명령어를 치므로써, 스크린을 전환한다.
명령어들
- c : create a new screen
- space : cycle forward through screens
<n> : jump to screen #<n>
- w : list all available screens
- S : split the current screen in half (ie, have 2 half-sized terminals on the screen at once)
[ : enter a VimEditor-like mode for scrolling back through the current screen, as well as copying and pasting (Ctrl-]) text between multiple screens.
- Ctrl+d (or however else you normally log out of a shell) : remove a screen
- ? : find help about all the other commands.
Example
$ screen -S 세션이름 : 새로운 세션을 만든다. $ screen -d : 현재 세션을 detach시킨다. $ screen -r 세션이름 : 만들어진 세션에 다시 접속. $ screen -list : 만들어진 세션의 이름 출력. $ screen -x 세션이름 : 접속이 끊어지지 않은 세션에 접속. (접속한 스크린을 공유한다.)
Ctrl-A 를 시작으로 막 사용하다 보면, 먹통이 될 때가 있다. 그 이유는 Ctrl-A s 를 눌렀기 때문. 이것은 xoff 명령이다. xon 은 다시Ctrl-A q를 눌러줘야 한다. 한참을 돌아 알아냄 ㅡ.ㅡ; -- yong27 2007-07-27 11:51:16