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

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

Linux_Centos7_ifconfig报错Command not found
6.使用vi编辑该文件

vi ifcfg-ens32

编辑过程:
输入 i 开始编辑,把最后一行的no改为yes,然后按Esc推出编辑,最后输入 :wq 保存

7.使用命令service network restart重启网络

8.解决
Linux_Centos7_ifconfig报错Command not found

相关标签: Linux 安装之路