问题描述:

克隆完虚拟机或者打开之前的虚拟机文件后启动网卡时提示“device "eth0" does not seem to be present, delaying initialization”

解决方法:

ifconfig –a 看看网卡MAC地址和网卡名字是否一致,我的问题便是配置文件为eth0而ifconfig -a看到的是eth1。

mv ifcfg-eth0 ifcfg-eth1

sed 's/DEVICE="eth0"/DEVICE="eth1"/g' ifcfg-eth1

修改MAC地址比较。

ONBOOT="yes"

重启网卡搞定!!