Linux:GNU/Screen上下滚动查看数据

时间:2020-01-09 10:43:33  来源:igfitidea点击:

我正在使用GNU Screen软件应用程序来多路复用多个虚拟控制台。
我可以通过远程ssh终端会话在单个终端窗口内访问多个单独的终端会话。
通常,如何浏览/var /目录中的服务器日志。
当我运行tail -f/var/log/messages或者/var/log/secure文件时,我似乎无法向上滚动。
如何在GNU scree下使用向上/向下翻页键向上滚动?

您需要使用以下组合键向上滚动并在GNU屏幕下查看数据。
首次按下:

CTRL-A

然后按:[
这将在GNU /屏幕中激活复制模式。
现在,您可以上下滚动并查看数据。
使用以下键:

  • CTRL-u和CTRL-d在保持光标位置的同时上下滚动显示指定的行数。 (默认值:半屏)。
  • CTRL-b和C-f在整个屏幕上上下滚动显示。

在手册页中,可以在复制模式下使用以下移动键:

h, j, k, l move the cursor line by line or column by column.
         0, ^ and $ move to the leftmost column, to the first or last non-whitespace character on the line.
         H, M and L move the cursor to the leftmost column of the top, center or bottom line of the window.
         + and - positions one line up and down.
         G moves to the specified absolute line (default: end of buffer).
         | moves to the specified absolute column.
         w, b, e move the cursor word by word.
         B, E move the cursor WORD by WORD (as in vi).
         C-u and C-d scroll the display up/down by the specified amount of lines while preserving the cursor position. (Default: half screen-full).
         C-b and C-f scroll the display up/down a full screen.
         g moves to the beginning of the buffer.
         % jumps to the specified percentage of the buffer.

对于搜索,请使用以下类似于vi的语法:

  • /SearchWord类似于Vi的搜索。
  • ?SearchWord类似于Vi的向后搜索。

有关更多信息,请参见屏幕手册页:

$ man screen