top命令行含义解析

快捷键“1”可以快速切换显示所有cpu的信息

快捷键‘x’可以高亮显示当前排序列

shift+方向键:可以快速切换排序的列

top -c 显示完整命令

 load含义解释:http://www.ruanyifeng.com/blog/2011/07/linux_load_average_explained.html 

us:用户空间占用CPU的百分比

sy:内核空间占用CPU的百分比

ni(nice):改变过优先级的进程占用CPU的百分比

id(idle):空闲CPU百分比

wa(wait): IO等待占用CPU的百分比

hi:硬中断(Hardware IRQ)占用CPU的百分比

si:软中断(Software Interrupts)占用CPU的百分比

st(steal time):https://blog.csdn.net/yui/article/details/6395033

Steal time is the percentage of time a virtual CPU waits for a real CPU while the hypervisor is servicing another virtual processor.

st是指你和别人共用物理机资源,当你需要使用时,发现你的资源被其他虚拟机占用着,此时你只能等待其他虚拟机释放资源,而st就是你等待其他虚拟机释放资源的时间

 

http://man.linuxde.net/top

原文地址:https://www.cnblogs.com/shengulong/p/8649820.html