欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Centos7输入ifconfig时提示:-bash: ifconfig: command not found

程序员文章站 2022-03-09 11:27:36
...

** 大佬快走开,小白也别被我误导**记录一下
首先我遇到的问题是输入ifconfig是提示::-bash: ifconfig: command not found。
于是乎面向度娘,都说要进入/sbin 查看是否有ifconfig,若没有通过如下命令安装

cd /sbin

看下有没有这个ifconfig,肯定没有啊,那不然不显示?
在sbin目录中输入ls | grep ‘ifconfig’,没有则说明没有安装。
那怎么安装呢?
首先,(黑板敲三次)
1.输入【yum search ifconfig】命令,查看ifconfig所属命令包是net-tools.x86_64
Centos7输入ifconfig时提示:-bash: ifconfig: command not found
2.【yum install net-tools.x86_64】安装命令包,中途会询问“Is this os [y/d/n]”,按y回车,Complete完成安装。
Centos7输入ifconfig时提示:-bash: ifconfig: command not found
3.然后输入ifconfig,就能看到东西了。

小提示:

Centos7环境下适用。

相关标签: Linux