iotop命令用来动态地查看磁盘IO情况,用法如下:
安装iotop命令
[[email protected] ~]# yum install iotop -y
[[email protected] ~]# iotop Total disK READ : 0.00 B/s | Total disK WRITE : 0.00 B/s Actual disK READ: 0.00 B/s | Actual disK WRITE: 0.00 B/s TID PRIO USER disK READ disK WRITE SWAPIN IO> COMMAND 1 be/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % systemd --swi~eserialize 22 2 be/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [kthreadd] 3 be/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [ksoftirqd/0] 4 be/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [kworker/0:0] 5 be/0 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [kworker/0:0H] 6 be/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [kworker/u256:0] 7 rt/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [migration/0] 8 be/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [rcu_bh] // Total disK READ:从磁盘中读取的总速率 // Total disK WRITE:往磁盘里写入的总速率 // Actual disK READ:从磁盘中读取的实际速率 // Actual disK WRITE:往磁盘里写入的实际速率 // TID:线程ID,按p可转换成进程ID // PRIO:优先级 // USER:线程所有者 // disK READ:从磁盘中读取的速率 // disK WRITE:往磁盘里写入的速率 // SWAPIN:swap交换百分比 // IO>:IO等待所占用的百分比 // COMMAND:具体的进程命令