$ screen -X -S [session # you want to kill] quit


Posted by code cat

오랜만에 쓰는 screen/byobu 글이다.

가끔 screen에서 여러개 창을 쓰다가 중간 걸 꺼버릴 때가 있다.


0@$bash 1@$bash 2@$bash 3@$bash 4@$bash 


저렇게 있음, 3번을 꺼 버릴 때가 있다. 그럼 


0@$bash 1@$bash 2@$bash 4@$bash 


0,1,2,4 이렇게 쓰는데, 먼가 좀 그렇다.

한동안 그려러니 하고 쓰다 맘먹고 찾아본 결과 숫자를 바꾸는 법을 알아냈다.


바꾸려는 윈도우(4번이겠지)에 가서

ctrl + a, :number 3

하면 4번 윈도우가 3번으로 바뀌어서,

0@$bash 1@$bash 2@$bash 3@$bash


로 바뀐다.


정식 방법은

ctrl + a, :number x


로 바꿀 숫자를 x에 넣으면 된다.


하하 속 시원하다.

Posted by code cat


ctrl + q를 눌러주면 된다.  자세한 내용은 아래를 참조하자.

Screen CTRL-S Bug

When switching between terminals and text editors the occasional ctrl-s gets accidentally typed into the terminal. For along time I thought that this was a bug in screen but it is a standard terminal feature. Ctrl-s calls the software flow control method XOFF which stops the character flow to the terminal, which when you did not realise what you pressed just seems to freeze the terminal.

ctrl-q calls XON and starts the terminal again.

For a more permanent fix you can add this to your .bashrc (not sure how other shells are effected).

stty ixany

Which allows any character to call XON, so the character press is sent and displayed and you will never be aware of the terminal freezing.

If this does not work for you, or you also don't seem to be able to send ctrl-s ctrl-q commands to terminal applications you can use
stty stop undef To unmap ctrl-s
stty start undef To unmap ctrl-q

Or to stop XOFF and XON being sent from the keyboard but still allowing other software to send the commands use
stty ixoff -ixon
NB: ctrl-q can now be used to shutdown rtorrent

'리눅스 > 스크립트/유틸' 카테고리의 다른 글

.svn 지우기  (0) 2012.08.05
Code Sourcery 설치하기  (0) 2012.07.31
vi 검색한 내용 copy, paste 하기  (0) 2012.07.02
samba 로그인 정보 지우기/보기  (0) 2012.06.23
SVN in conflict  (0) 2012.06.21
Posted by code cat