首页 > 其他分享 >-bash: iostat: 未找到命令

-bash: iostat: 未找到命令

时间:2023-03-21 20:12:57浏览次数:52  
标签:10.1 x86 iostat sysstat 未找到 64 安装 el7 bash

运维排查哪个进程比较消耗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最高的进程了。


 


 

 

 

标签:10.1,x86,iostat,sysstat,未找到,64,安装,el7,bash
From: https://www.cnblogs.com/xgsh/p/17241189.html

相关文章

  • iostat命令安装及详解
    iostat是I/Ostatistics(输入/输出统计)的缩写,iostat工具将对系统的磁盘操作活动进行监视。它的特点是汇报磁盘活动统计情况,同时也会汇报出CPU使用情况。同vmstat一样,iostat......
  • docker bash: xxx : command not found
    1.现象:在容器内执行route命令会报错 bash:route:commandnotfound2.原因容器内没有安装route命令3.解决办法(1)bash: ip:commandnotfoundapt-getupdate&&a......
  • node.js解析bash下的curl命令并发送请求
    node.js解析bash下的curl命令并发送请求const{promises:fs}=require("fs");consthttps=require('https');functionhttps_request(url,headers,data){......
  • -bash: vim: 未找到命令
    1.首先查看vim安装包,如下图rpm-qa|grepvim2.下载vim(需要连接网络)yuminstall-yvim*3.安装成功后查看rpm-qa|grepvim ok!!!!!!......
  • -bash: wget: 未找到命令
    在Linux操作系统中,我们会经常要用到wget下载文件。wget非常稳定,它在带宽很窄的情况下和不稳定网络中有很强的适应性。1.在linux中使用wget时,若报-bash:wget:commandnot......
  • bashrc
    aliasll="ls-l"aliasla="ls-a"aliaslla="ls-la"aliaslal="ls-al"aliasplc="ping192.168.1.200"aliashmi="ping192.168.1.210"aliasmain="nodemain.js"......
  • 浅谈Linux下的shell--BASH
    shell的概念与作用我们已经学习并知道了操作系统实际上就是一款软件,一款用来管理计算机软硬件资源,为用户提供良好的执行环境的软件。假如该软件能被用户随意操作,就会有可能......
  • bash 中的特殊变量
    变量说明$nn是一个参数,从1开始表示参数的位置,例如:$1表示第一个参数,$2表示第二个参数$#命令行参数的个数$0当前shell脚本的名称$?前一个命令或者是函......
  • 如何解决nginx:未找到命令问题
    1、打开环境变量所在的文件:vim/etc/profile2、在profile文件末尾,加上如下内容#指向nginx的安装目录sbin"PATH=$PATH:/usr/local/nginx/sbin3、重新加载环境source/......
  • Bash shell:bash脚本示例
    示例1:函数、local局部变量的使用1#!/bin/bash2foo1=hello3foo2=world4echo"$foo1"//双引号里的变量转义,输出hello5echo'$foo1'//单引号里的变量不会......