112

インストールscreenしたばかりで、Linuxターミナルを複数の部分に分割するというアイデアが気に入っています。しかし、私は 1 つのことを理解することはできませんscreen。通常の Linux ターミナルを使用している場合は、Shift+Pg UpまたはShift+ Pg Dn` を使用してこれを実現できます。残念ながら、分割された端末では機能しません。

screenそれが、端末を分割 して言うときの意味です。ここに画像の説明を入力

そして、それは通常のターミナルです(念のため): ここに画像の説明を入力

4

5 に答える 5

32

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.

于 2014-01-09T06:13:15.917 に答える
28

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

于 2016-03-14T20:27:49.507 に答える