- uptime
09:20:31 up 84 days, 17:55, ?3 users, ?load average: 25.34, 10.29, 4.36
Load Average 就是一段时间(1分钟、5分钟、15分钟)内平均Load
?
- vmstat
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu------
?r ?b ? swpd ? free ? buff ?cache ? si ? so ? ?bi ? ?bo ? in ? cs us sy id wa st
?1 ?0 916560 586560 141088 747096 ? ?1 ? ?1 ? ? 5 ? ?13 ? ?1 ? ?0 ?7 ?1 92 ?0 ?0
?
Procs(进程):
r: 运行队列中进程数量
b: 等待IO的进程数量
Memory(内存):
swpd: 使用虚拟内存大小
free: 可用内存大小
buff: 用作缓冲的内存大小
cache: 用作缓存的内存大小
Swap:
si: 每秒从交换区写到内存的大小
so: 每秒写入交换区的内存大小
IO:(现在的Linux版本块的大小为1024bytes)
bi: 每秒读取的块数
bo: 每秒写入的块数
系统:
in: 每秒中断数,包括时钟中断。
cs: 每秒上下文切换数。
CPU(以百分比表示):
us: 用户进程执行时间(user time)