如何解决虚拟机克隆导致"Bringing up interface eth0: Error: No suitable device found: no device found for connection 'System eth0'."

在VMware的虚拟机中克隆CentOS,在重启网卡的时候报错:

Bringing up interface eth0:  Error: No suitable device found: no device found for connection ‘System eth0‘.

Shutting down loopback interface:                          [  OK  ]

Bringing up loopback interface:                            [  OK  ]

Bringing up interface eth0:  Error: No suitable device found: no device found for connection ‘System eth0‘.

                                                           [FAILED]

现象

解决办法:

首先,打开/etc/udev/rules.d/70-persistent-net.rules内容如下面例子所示

# This file was automatically generated by the /lib/udev/write_net_rules
# program, run by the persistent-net-generator.rules rules file.
#
# You can modify it, as long as you keep each rule on a single
# line, and change only the value of the NAME= key.

# PCI device 0x8086:0x100f (e1000)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:0c:29:67:c5:e2", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"

# PCI device 0x8086:0x100f (e1000)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:0c:29:75:d1:d7", ATTR{type}=="1", KERNEL=="eth*", NAME="eth1"

我们查看克隆源系统与克隆后中eth0的配置:

#cat /etc/sysconfig/network-scripts/ifcfg-eth0

DEVICE=eth0

HWADDR=00:0C:29:67:C5:E2
TYPE=Ethernet
UUID=5cb1d564-a7e8-4b57-bdb4-7e76e92f460a
ONBOOT=yes
NM_CONTROLLED=yes
BOOTPROTO=dhcp

可以看出,克隆的时候把网卡的MAC地址也克隆了,导致了有两个系统有相同的MAC地址。

方法一、DEVICE=eth0改成DEVICE=eth1,然后HWADDR改成00:0c:29:75:d1:d7,然后把 ifcfg-eth0改名为ifcfg-eth1

方法二、在70-persistent-net.rules文件中把eth0的地址改成00:0c:29:75:d1:d7,同时把eth1的配置注释掉,然后在ifcfg-eth0中修改HWADDR。

最后 service network restart即可。

如何解决虚拟机克隆导致"Bringing up interface eth0: Error: No suitable device found: no device found for connection 'System eth0'."

时间: 2024-12-19 19:43:18

如何解决虚拟机克隆导致"Bringing up interface eth0: Error: No suitable device found: no device found for connection 'System eth0'."的相关文章

Bringing up interface eth0: Error: No suitable

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.i

克隆虚拟机重启服务时 Error:No suitable device found: no device found for connection "System eth0"

故障说明: 在克隆几台虚拟机,发现启动后不能配置IP地址等信息,使用linux命令: “ifup eth0”也不能激活网卡, 而在使用"service network restart",出现错误: Error:No suitable device found: no device found for connection "System eth0" 解决方法: 基于这个错误,在网上查找了一下,发现有很多朋友都遇到过,这次错误使用第2种方式解决. 1.删除/etc/u

vmware复制虚拟机出现Error:No suitable device found:no device found for connection 'System eth0'

vmware复制虚拟机出现Error:No suitable device found:no device found for connection 'System eth0' 废话不多说,直接给出解决办法: 1.查看硬件地址 [[email protected] ~]# ifconfig eth2      Link encap:Ethernet  HWaddr 00:0C:29:89:18:58            inet addr:192.168.11.200  Bcast:192.1

解决 Error:No suitable device found: no device found for connection "System eth0"

一.背景 我们安装好了一个虚拟机,我想做分布式集群,想模拟几台服务器,这时就想直接复制已经有的安装好的虚拟机,这样比较省事,不要在重复的安装虚拟机并配置JAVA环境,省掉做同样的事情,这时直接复制,这样之前配置的JAVA环境都有了. 二.问题 这时我复制好的虚拟机,启动登陆进去(用户名和密码跟之前那台是一样的),修改好IPADDR,然后网卡重启出现问题? #service network restart 出现问题:Error:No suitable device found: no device

复制虚拟机,链接网络问题:没有找到合适的设备:没有找到可用于链接System eth0 的

http://my.oschina.net/coolfire368/blog/292742 1./etc/udev/rules.d/70-persistent-net.rules 修改也成,修改时留下最后一个网卡地址,那是系统找到的,用它!!把其他改成它的数字,把ifcfg-eth0或1 名字改下 全清空,重启也成 2.ifcfg-eth0 3.网卡地址 与虚拟机配置---这个我没改 4.网络连接不用改了,图形界面不需要改. 5.service network restart 复制虚拟机,链接网

克隆linux虚拟机报错Bringing up interface eth0

克隆了一个虚拟机,但是在启动网卡的时候,报错:Bringing up interface eth0: Device eth0 does not seem to be present ,delayin initialization 解决: 找到70-persistend-net.rules文件,查看eth1 ,记下他的mac address 然后:重命名网卡 最后:修改ifcfg-eth1:HWADDR 修改为上面记下来的MAC address,修改驱动名 最后重启网卡进程 service net

CentOS Linux解决网卡报错Bringing up interface eth0.....

问题描述:在VMware里克隆出来的CentOS Linux,开机执行命令:ifconfig...没有看到eth0网卡.然后重启网卡又报以下错误:Bringing up interface eth0:  Device eth0 does not seem to be present,delaying initialization.                    [FAILED] 解决办法:首先,打开/etc/udev/rules.d/70-persistent-net.rules内容如下

解决虚拟机克隆后eth0不见的问题

直接修改 : /etc/sysconfig/network-script/ifcfg-eth0 删掉UUID HWADDR 配置静态地址:DEVICE=eth0TYPE=EthernetONBOOT=yes #是否开机启用BOOTPROTO=static #ip地址设置为静态IPADDR=192.168.0.101NETMASK=255.255.255.0 重启服务:service network restart 然后:rm -rf /etc/udev/rules.d/70-persistent

解决虚拟机克隆Linux找不到网卡

ifconfig查看网络配置,找不到IP: 1.ifup eth0启动网卡显示错误:device eth0 does mpt see to be present,delaying initialization 2.vi /etc/sysconfig/network-script/ifcfg-eth0 编辑网卡信息把MAC地址删掉或者注释掉,保存退出(注释:#+要注释的语句) 3.找到/etc/udev/rules.d/70-persistent-net.rules 删除后重启机器,系统会自动生成