Linux終端查看最消耗CPU內存的進程

1.CPU佔用最多的前10個進程ide

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

Linux終端查看最消耗CPU內存的進程Linux終端查看最消耗CPU內存的進程

2.內存消耗最多的前10個進程blog

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

Linux終端查看最消耗CPU內存的進程Linux終端查看最消耗CPU內存的進程

3.虛擬內存使用最多的前10個進程進程

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

Linux終端查看最消耗CPU內存的進程Linux終端查看最消耗CPU內存的進程

4.也能夠試試內存

ps auxw --sort=rss
ps auxw --sort=%cpu

5.看看幾個參數含義sed

  1. %MEM 進程的內存佔用率
  2. MAJFL is the major page fault count,
  3. VSZ 進程所使用的虛存的大小
  4. RSS 進程使用的駐留集大小或者是實際內存的大小(RSS is the "resident set size" meaning physical memory used)
  5. TTY 與進程關聯的終端(tty)
相關文章
相關標籤/搜索