测试环境:centos7
在安装完虚拟机之后,运行命令ifconfig提示command not found,这是因为一个新的虚拟机没有安装net-tools。然而安装net-tools却仍然报错,解决办法:
1.编辑网卡文件:
cd /etc/sysconfig/network-scripts/
vi ifcfg-enp0s3 #把ONBOOT=no,改为yes,并保存
2.重启网络:
service network restart
3.安装net-tools:
yum install net-tools
网友评论