美文网首页
Linux终端查看最消耗CPU内存的进程

Linux终端查看最消耗CPU内存的进程

作者: 尘世不扰 | 来源:发表于2019-04-10 22:55 被阅读0次

    image

    1.CPU占用最多的前10个进程

    ps auxw|head -1;ps auxw|sort -rn -k3|head -10
    

    2.内存消耗最多的前10个进程

    ps auxw|head -1;ps auxw|sort -rn -k4|head -10
    
    image

    3.虚拟内存使用最多的前10个进程

    ps auxw|head -1;ps auxw|sort -rn -k5|head -10
    
    image

    4.也可以试试

    ps auxw --sort=rssps auxw --sort=%cpu
    

    5.看看几个参数含义

    1. %MEM 进程的内存占用率

    2. MAJFL is the major page fault count,

    3. VSZ 进程所使用的虚存的大小

    4. RSS 进程使用的驻留集大小或者是实际内存的大小(RSS is the "resident 5. set size" meaning physical memory used)

    5. TTY 与进程关联的终端(tty)

    相关文章

      网友评论

          本文标题:Linux终端查看最消耗CPU内存的进程

          本文链接:https://www.haomeiwen.com/subject/dtbmiqtx.html