TOOL설치

리눅스 스크롤 버퍼 크기 설정

우와해커 2020. 5. 28. 15:32

스크롤 버퍼 크기 설정

 

1. 모바일 Jucy 터미널 vt100으로 설정 (Screen swipe)
/etc/screenrc 파일이 vt100으로 설정 되어있기 때문...


2. screenrc 파일 값 수정
defscrollback 1024 <- 수정

 

 

You actually do have something of a buffer, but it's invisible to most terminal emulators (which is why e. g. scroll bars don't appear to work). One way to get at it is to enter copy mode (Ctrl-A,[ followed by arrow keys, PgUp, et cetera). The size of this buffer can be configured in .screenrc. You you an change its allocation inside your screen session:
Ctrl-a + : and typing

 

I would like to point out if you wants to change Screen settings globally (all users) then you can edit /etc/screenrc file. (Ubuntu). File path might be different on other distros.
In your case you can add the following lines to the file:
# define a bigger scrollback, default is 100 lines
defscrollback 1024

'TOOL설치' 카테고리의 다른 글

tmux  (0) 2020.07.07
x64dbgpy  (0) 2020.06.26
[VPN] 와이어가드 config 연결  (0) 2020.06.14
파이썬 pip, 모듈 설치  (0) 2020.06.01
Cloud에 칼리 ISO 설치  (0) 2020.05.27