浏览HP-UX中的Top Command页面

时间:2015-10-14 19:13:35

标签: unix process hp-ux

I PuTTY到HP-UX盒子,当我运行top命令时,它只显示前21个进程。我还在列表的右上角看到有一个标题Page# 1/12。在这样的环境中,我需要知道如何浏览/滚动页面以查看其他进程。 (我已经尝试了从 PgUp / PgDown 的所有内容,以及 Shift / Alt / Ctrl 无效。

3 个答案:

答案 0 :(得分:1)

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

j :下一个屏幕

k :上一个屏幕

l :第一个屏幕

答案 1 :(得分:1)

尝试增加回滚(默认为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

根据环境/工具的不同,有时空格键也适用于我。

答案 2 :(得分:0)

我不认为可以在顶部输出上滚动,不确定HP-UX虽然我认为它应该是相同的行为,您是否尝试使用数字(例如,按第2页的第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