[root@testhost ~]# iostat
-bash: iostat: command not found

IOSTAT 命令不可用,首先确认sysstat包是否安装,sysstat包中包括iostat,mpstat,sar,sa

[root@testhost ~]#yum install -y sysstat

安装完成后,再执行iostat命令。

 

解释:

avg-cpu段:
%user: 在用户级别运行所使用的CPU的百分比.
%nice: nice操作所使用的CPU的百分比.
%sys: 在系统级别(kernel)运行所使用CPU的百分比.
%iowait: CPU等待硬件I/O时,所占用CPU百分比.
%idle: CPU空闲时间的百分比.


Device段:
tps: 每秒钟发送到的I/O请求数.
Blk_read /s: 每秒读取的block数.
Blk_wrtn/s: 每秒写入的block数.
Blk_read:   读入的block总数.
Blk_wrtn:  写入的block总数.

相关文章:

  • 2022-02-03
  • 2021-11-30
  • 2022-02-14
  • 2022-12-23
  • 2021-10-13
  • 2021-12-06
  • 2021-11-18
猜你喜欢
  • 2021-12-04
  • 2021-09-12
  • 2021-10-04
  • 2022-12-23
  • 2022-12-23
  • 2021-11-16
  • 2021-05-28
相关资源
相似解决方案