Linux_Centos7_ifconfig报错Command not found
程序员文章站
2022-03-09 11:26:48
...
1.在Centos7默认的mini版中,没有ifcongfig命令,需要自己安装
2.因为ifconfig在net-tools中,所以安装net-tools
yum install net-tools 找到安装包之后,询问你Is this OK[y/d/N],需要你手动选择
yum -y install net-tools 加上y之后会自动选择安装
3.这时候报错Cannot find a valid baseurl for repo: base/7/x86_6
4.使用命令ip addr
得知自己的网卡的名称为ens32
5.进入/etc/sysconfig/network-scripts目录,找到文件ifcfg-ens32,将配置ONBOOT=no,改为ONBOOT=yes
cd /etc/sysconfig/network-scripts
ls
6.使用vi编辑该文件
vi ifcfg-ens32
编辑过程:
输入 i 开始编辑,把最后一行的no改为yes,然后按Esc推出编辑,最后输入 :wq 保存
7.使用命令service network restart
重启网络
8.解决
推荐阅读
-
bash scp command not found的解决方法
-
ubuntu下安装vue/cli提示No command 'vue' found
-
java调用sqlldr报错:Message 2100 not found
-
Postman请求后台报错:Invalid character found in method name. HTTP method names must be tokens
-
linux 执行 javac 报错 javac: command not found
-
解决 bash: vue command not found
-
sudo service: command not found 报错的解决方法
-
Pycharm下载pyinstaller报错:You should consider upgrading via the 'python -m pip install --upgrade pip' command的解决方法
-
linux下提示bash:command not found
-
mysql报错:Deadlock found when trying to get lock; try restarting transaction的解决方法