슬라이스 된 "스크린"터미널에서 위아래로 스크롤하는 방법
방금 설치 screen
하고 Linux 터미널을 여러 조각으로 나누는 아이디어가 마음에 듭니다. 하지만 한 가지를 알아낼 수 없습니다 screen
. .NET에있을 때 위아래로 스크롤하는 방법입니다 . 일반 리눅스 터미널을 사용할 때 Shift+ Pg Up또는 Shift+ Pg Dn` 로이를 수행 할 수 있습니다 . 그러나 불행히도 분할 된 터미널에서는 작동하지 않습니다.
그것이 내가 말하고 screen
분할 터미널을 의미하는 것입니다 .
그리고 그것은 정규 종착역입니다 (경우에 따라) :
Control+를 시도한 a다음 Escape. 그런 다음 화살표 키를 사용하여 커서를 이동할 수 있습니다.
Press Ctrl-a then [ will enter the copy mode, and you can scroll up and down like vim editor. Leave the copy mode by pressing Escape.
Ctrl-a (default prefix) + [: Enter copy mode.
Esc: Quit copy mode.
Within copy mode:
Ctrl-u, Ctrl-d: Page up/down by certain amount of lines while preserving cursor position (default by half of the screen)
Ctrl-b, Ctrl-f: Page up/down by a full screen
Use CTRL + A, then Escape to enter in "Copy mode". After that, you should be able to move your cursor around using the arrow keys. To exit, press Escape again.
Another way is to do the following to use Mouse Scrollwheel:
echo 'termcapinfo xterm* ti@:te@' >> ~/.screenrc
스크롤링은 우분투에서 '종결 자'로 화면에서 작동합니다.
sudo apt-get install terminator
참고 URL : https://stackoverflow.com/questions/18489216/how-to-scroll-up-and-down-in-sliced-screen-terminal
'development' 카테고리의 다른 글
두 개의 float div를 내부로 감싸기 위해 div를 만드는 방법은 무엇입니까? (0) | 2020.10.25 |
---|---|
PHP-특정 문자열로 시작하는 배열에서 모든 키 가져 오기 (0) | 2020.10.25 |
Golang에서 Mkdir을 사용하여 중첩 된 디렉토리를 만드는 방법은 무엇입니까? (0) | 2020.10.25 |
한 번에 여러 값을 postgres 테이블에 삽입하는 방법은 무엇입니까? (0) | 2020.10.25 |
Google Maps API V3에서 fitBounds ()를 사용한 후 setZoom () 사용 (0) | 2020.10.25 |