Home ifconfig命令无法使用
Post
Cancel

ifconfig命令无法使用

修改网络配置,末尾的ifcfg-ens33可根据实际情况更改,有的可能为ifcfg-eth0 或者其他,可先切换到上级目录查看

1
vi /etc/sysconfig/network-scripts/ifcfg-ens33

ONBOOT=no改为ONBOOT=yes,代表系统启动时,网卡也随之启动

1
2
3
4
...
DEVICE=ens33
ONBOOT=yes
...

重启网络服务

1
service network restart

查询相关软件包

1
yum provides ifconfig

安装 net-tools,中间有几步需要手动确认的地方,输入y即可。

1
yum install net-tools
This post is licensed under CC BY 4.0 by the author.