-bash: iostat: 未找到命令
运维排查哪个进程比较消耗io,发现终端没有iostat,下面跟着我一起进行安装把。
一、在线安装[root@ops1 ~]# iostat #发现centos未安装iostat
-bash: iostat: 未找到命令 [root@ops1 ~]# yum provides iostat #使用proivdes查看iostat是由那个安装包提供的 已加载插件:fastestmirror, product-id, search-disabled-repos, subscription-manager This system is not registered with an entitlement server. You can use subscription-manager to register. Loading mirror speeds from cached hostfile * base: mirrors.bupt.edu.cn * extras: mirrors.bupt.edu.cn * updates: mirrors.bupt.edu.cn sysstat-10.1.5-19.el7.x86_64 : Collection of performance monitoring tools for Linux 源 :base #base源里有sysstat-10.1.5-20.el7_9.x86_64 匹配来源: 文件名 :/usr/bin/iostat sysstat-10.1.5-20.el7_9.x86_64 : Collection of performance monitoring tools for Linux 源 :updates #updates源里也有sysstat-10.1.5-20.el7_9.x86_64 匹配来源: 文件名 :/usr/bin/iostat [root@ops1 ~]# yum -y install sysstat-10.1.5-20.el7_9.x86_64 #安装sysstat-10.1.5-20.el7_9.x86_64 已加载插件:fastestmirror, product-id, search-disabled-repos, subscription-manager This system is not registered with an entitlement server. You can use subscription-manager to register. Loading mirror speeds from cached hostfile * base: mirrors.bupt.edu.cn * extras: mirrors.bupt.edu.cn * updates: mirrors.bupt.edu.cn 正在解决依赖关系 --> 正在检查事务 ---> 软件包 sysstat.x86_64.0.10.1.5-20.el7_9 将被 安装 --> 正在处理依赖关系 libsensors.so.4()(64bit),它被软件包 sysstat-10.1.5-20.el7_9.x86_64 需要 --> 正在检查事务 ---> 软件包 lm_sensors-libs.x86_64.0.3.4.0-8.20160601gitf9185e5.el7 将被 安装 --> 解决依赖关系完成 依赖关系解决 =================================================================================================== Package 架构 版本 源 大小 =================================================================================================== 正在安装: sysstat x86_64 10.1.5-20.el7_9 updates 315 k 为依赖而安装: lm_sensors-libs x86_64 3.4.0-8.20160601gitf9185e5.el7 base 42 k 事务概要 =================================================================================================== 安装 1 软件包 (+1 依赖软件包) 总下载量:357 k 安装大小:1.2 M Downloading packages: (1/2): lm_sensors-libs-3.4.0-8.20160601gitf9185e5.el7.x86_64.rpm | 42 kB 00:00:00 (2/2): sysstat-10.1.5-20.el7_9.x86_64.rpm | 315 kB 00:00:00 --------------------------------------------------------------------------------------------------- 总计 651 kB/s | 357 kB 00:00:00 Running transaction check Running transaction test Transaction test succeeded Running transaction 正在安装 : lm_sensors-libs-3.4.0-8.20160601gitf9185e5.el7.x86_64 1/2 正在安装 : sysstat-10.1.5-20.el7_9.x86_64 2/2 验证中 : sysstat-10.1.5-20.el7_9.x86_64 1/2 验证中 : lm_sensors-libs-3.4.0-8.20160601gitf9185e5.el7.x86_64 2/2 已安装: sysstat.x86_64 0:10.1.5-20.el7_9 作为依赖被安装: lm_sensors-libs.x86_64 0:3.4.0-8.20160601gitf9185e5.el7 完毕! #安装完成 [root@ops1 ~]# iostat #成功查看io读写速率
[root@ops1 ~]# yum install iotop -y #通过命令"yum install iotop -y"安装iotop工具。
已加载插件:fastestmirror, product-id, search-disabled-repos, subscription-manager
This system is not registered with an entitlement server. You can use subscription-manager to register.
Loading mirror speeds from cached hostfile
* base: mirrors.bupt.edu.cn
* extras: mirrors.bupt.edu.cn
* updates: mirrors.bupt.edu.cn
正在解决依赖关系
--> 正在检查事务
---> 软件包 iotop.noarch.0.0.6-4.el7 将被 安装
--> 解决依赖关系完成
依赖关系解决
===================================================================================================
Package 架构 版本 源 大小
===================================================================================================
正在安装:
iotop noarch 0.6-4.el7 base 52 k
事务概要
===================================================================================================
安装 1 软件包
总下载量:52 k
安装大小:156 k
Downloading packages:
iotop-0.6-4.el7.noarch.rpm | 52 kB 00:00:00
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
正在安装 : iotop-0.6-4.el7.noarch 1/1
验证中 : iotop-0.6-4.el7.noarch 1/1
已安装:
iotop.noarch 0:0.6-4.el7
完毕!
[root@ops1 ~]# iotop #输入命令"iotop"就可以查看当前使用io最高的进程了。