Bringing up interface eth0: Error: No suitable device found: no device found for connection ‘System eth0‘.
克隆虚拟机网卡启动中遇到的问题
1、重启网卡之后遇到如下错误
Bringing up interface eth0: Error: No suitable device found: no device found for connection ‘System eth0‘.
2、ifconfig eth0 up 出现如下错误
eth0: unknown interface: No such device
提示没有eth0这样的设备
3、# ifconfig -a 查看没有eth0设备
4、解决方案
#cd cd /etc/sysconfig/network-scripts/ #cp ifcfg-eth0 ifcfg-eth0.bak #mv ifcfg-eth0 ifcfg-eth1 #vi /etc/udev/rules.d/70-persistent-net.rules //查看eht1的mac地址和ifcfg-eth0的addr地址是否一致,如果不一致,改成一致即可 #servcie network restart //重启网卡即可
本文出自 “沐木” 博客,请务必保留此出处http://sxhxt.blog.51cto.com/5126000/1946538
Bringing up interface eth0: Error: No suitable
原文地址:http://sxhxt.blog.51cto.com/5126000/1946538