development

슬라이스 된 "스크린"터미널에서 위아래로 스크롤하는 방법

big-blog 2020. 10. 25. 12:36
반응형

슬라이스 된 "스크린"터미널에서 위아래로 스크롤하는 방법


방금 설치 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

반응형