vmstat:什么是非良好用户 CPU 滴答?

vmstat:什么是非良好用户 CPU 滴答?

有谁知道“不友好的用户 CPU 滴答声“vmstat -s 中的行含义是什么?

例如:

# vmstat -s
   127180  total memory
    23436  used memory
     9828  active memory
     6744  inactive memory
   103744  free memory
        0  buffer memory
     9172  swap cache
        0  total swap
        0  used swap
        0  free swap
     1572 non-nice user cpu ticks
        0 nice user cpu ticks
     2632 system cpu ticks
     8543 idle cpu ticks
        0 IO-wait cpu ticks
       21 IRQ cpu ticks
        5 softirq cpu ticks
        0 stolen cpu ticks
        0 pages paged in
        0 pages paged out
        0 pages swapped in
        0 pages swapped out
    47872 interrupts
    53183 CPU context switches
   1331129846 boot time
         1010 forks

答案1

任何用户进程的 CPU 滴答都不是很好,这是一种改变进程优先级的方法http://en.wikipedia.org/wiki/Nice_(Unix) 如果你不使用此命令来操纵优先级,你很可能最终会将所有用户 CPU 滴答都放在统计数据的非良好部分

相关内容