美文网首页
ifconfig: command not found解决

ifconfig: command not found解决

作者: 三叉戟渔民 | 来源:发表于2020-06-12 16:03 被阅读0次

    场景:

    新装虚拟机centos7执行ifconfig返回command not found
    然后执行yum install ifconfig找不到安装包

    解决:

    [root@xh1 ~]# yum search ifconfig
    已加载插件:fastestmirror
    Loading mirror speeds from cached hostfile
     * base: mirrors.cn99.com
     * extras: mirrors.163.com
     * updates: mirrors.cn99.com
    ================================================================================================ 匹配:ifconfig =================================================================================================
    net-tools.x86_64 : Basic networking tools
    [root@xh1 ~]# yum install net-tools.x86_64
    已加载插件:fastestmirror
    Loading mirror speeds from cached hostfile
     * base: mirrors.cn99.com
     * extras: mirrors.163.com
     * updates: mirrors.cn99.com
    正在解决依赖关系
    --> 正在检查事务
    ---> 软件包 net-tools.x86_64.0.2.0-0.25.20131004git.el7 将被 安装
    --> 解决依赖关系完成
    
    依赖关系解决
    
    =================================================================================================================================================================================================================
     Package                                         架构                                         版本                                                              源                                          大小
    =================================================================================================================================================================================================================
    正在安装:
     net-tools                                       x86_64                                       2.0-0.25.20131004git.el7                                          base                                       306 k
    
    事务概要
    =================================================================================================================================================================================================================
    安装  1 软件包
    
    总下载量:306 k
    安装大小:917 k
    Is this ok [y/d/N]: y
    Downloading packages:
    警告:/var/cache/yum/x86_64/7/base/packages/net-tools-2.0-0.25.20131004git.el7.x86_64.rpm: 头V3 RSA/SHA256 Signature, 密钥 ID f4a80eb5: NOKEY
    net-tools-2.0-0.25.20131004git.el7.x86_64.rpm 的公钥尚未安装
    net-tools-2.0-0.25.20131004git.el7.x86_64.rpm                                                                                                                                             | 306 kB  00:00:00     
    从 file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 检索密钥
    导入 GPG key 0xF4A80EB5:
     用户ID     : "CentOS-7 Key (CentOS 7 Official Signing Key) <security@centos.org>"
     指纹       : 6341 ab27 53d7 8a78 a7c2 7bb1 24c6 a8a7 f4a8 0eb5
     软件包     : centos-release-7-8.2003.0.el7.centos.x86_64 (@anaconda)
     来自       : /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
    是否继续?[y/N]:y
    Running transaction check
    Running transaction test
    Transaction test succeeded
    Running transaction
      正在安装    : net-tools-2.0-0.25.20131004git.el7.x86_64                                                                                                                                                    1/1 
      验证中      : net-tools-2.0-0.25.20131004git.el7.x86_64                                                                                                                                                    1/1 
    
    已安装:
      net-tools.x86_64 0:2.0-0.25.20131004git.el7                                                                                                                                                                    
    
    完毕!
    [root@xh1 ~]# ifconfig
    

    OK了。

    相关文章

      网友评论

          本文标题:ifconfig: command not found解决

          本文链接:https://www.haomeiwen.com/subject/iyogtktx.html