在 HP-UX 中浏览 Top Command 的页面

Navigate through Top Command's Pages in HP-UX

我PuTTY到一个HP-UX框,当我运行top命令时,它只显示前21个进程。我还看到在列表的右上角有一个 header,上面写着 Page# 1/12。我需要知道,在这样的环境中,我如何 navigate/scroll 通过页面查看其他进程。 (我已经尝试了从 PgUp/PgDown 开始的所有操作,几乎每个键都带有 Shift/Alt/Ctrl 无济于事。

我不认为可以在顶部输出上滚动,不确定 HP-UX 虽然我相信它应该是相同的行为,您是否尝试使用数字(例如,按 2 进入第二页,或按 n 进入下一页页 ..只是一个猜测 )

如果您想查看所有进程,有几个选项...

1. use htop where you can use page up/page down (or up and down arrow key) to scroll
2. run the top command only one iteration using -n option and take output in any file  

 top -b -n 1

3. ps -ef command can give you list of all process, ps command also have option to sort output based on %CPU or %MEM

要导航,请使用以下内容:

j : 下一屏

k:上一个屏幕

l : 第一屏

尝试增加回滚(默认为 200)并使用 SHIFT+PAGEUP/SHIFT+PAGEDOWN。

http://the.earth.li/~sgtatham/putty/0.60/htmldoc/Chapter3.html#using-scrollback http://the.earth.li/~sgtatham/putty/0.60/htmldoc/Chapter4.html#config-scrollback

取决于 environment/tools 有时空格键也适用于我。