Device eth0 does not seem to be present,delaying initialization

centos6.4安装 minimal

ifconfig...没有看到eth0.。然后重启网卡又报下面错误。

故障现象:

service network restart
Shutting down loopback insterface:         
                                                                       
                   [  OK  ]
Bringing up loopback insterface:         
                                                                       
                        [  OK  ]
Bringing up interface eth0:  Device eth0 does not seem to be present,delaying initialization.                    [FAILED]

解决办法:

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

# vi /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 0x1022:0x2000 (pcnet32)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:0c:29:8f:89:9
7", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"
# PCI device 0x1022:0x2000 (pcnet32)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:0c:29:50:bd:1
7", ATTR{type}=="1", KERNEL=="eth*", NAME="eth1"

记录下,eth1网卡的mac地址00:0c:29:50:bd:17

接下来,打开/etc/sysconfig/network-scripts/ifcfg-eth0

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

将 DEVICE="eth0"  改成  DEVICE="eth1"  ,
将 HWADDR="00:0c:29:8f:89:97" 改成上面的mac地址  HWADDR="00:0c:29:50:bd:17"

最后,重启网络

# service network restart
或者

# /etc/init.d/network restart

正常了。

时间: 2024-10-09 21:23:26

Device eth0 does not seem to be present,delaying initialization的相关文章

Bringing up interface eth0: Device eth0 does not seem to be present, delaying initialization.

--http://blog.csdn.net/xluren/article/details/38986667 Bringing up interface eth0:  Device eth0 does not seem to be present, delaying initialization. 在linux下的虚拟机出现了这个问题,问题的产生是因为之间做过部分的修改,clone等操作. 不就方案. CentOS Device does not seem to be present  故障现象

虚拟机CentOS复制到其他主机vm下IP地址无效(Bringing up interface eth0: Device eth0 does not seem to be present, delaying initialization)

Bringing up interface eth0:  Device eth0 does not seem to be present, delaying initialization 在虚拟机VM下安装的CentOS遇到这个问题,我是将centos.vmx放到其他的VM下打开 #dhclient #service network restart Shutting down loopback insterface:                                        

Linux 克隆虚拟机引起的“Device eth0 does not seem to be present, delaying initialization”

虚拟机Vmware上克隆了一个Red Hat Enterprise Linx启动时发现找不到网卡,如下所示,如果你在命令窗口启动网络服务就会遇到"Device eth0 does not seem to be present, delaying initialization"错误 关于这个错误,搜索了一下网上的资料,发现还蛮多人遇到过这类错误,了解了一下错误产生的原因和解决方案 错误原因: 克隆的Linux系统在新的机器上运行,新服务器网卡物理地址已经改变.而/etc/udev/rul

问题:Bringing up interface eth0: Device eth0 does not seem to be present,delaying initialization. [FAILED]—— 找不到网卡。

克隆虚拟机的时候或其他情况出现以下问题(命令service network restart): Bringing up interface eth0:  Device eth0 does not seem to be present,delaying initialization.                    [FAILED] 1.造成的原因: 第一次创建的时候,在文件: /etc/sysconfig/network-scripts/ifcfg-eth0 里面设定了网卡0绑定了MAC地

Device eth0 does not seem to be present,delaying initialization. 虚拟机克隆后出现网卡起不来

一.故障现象: [[email protected] ~]# service network restart Shutting down loopback insterface:                                                       [   OK  ] Bringing up loopback insterface:                                                            [  

vmware报Device eth0 does not seem to be present, delaying initialization错误

系统环境: CentOS-6.8-X86_64 使用vmware的克隆功能后,使用新克隆的虚拟机会报Device eth0 does not seem to be present, delaying initialization这样一个错误,这是由于网卡MAC地址错误导致的问题. 解决方法: 1.删除/etc/udev/rules.d/70-persistent-net.rules文件 2.编辑/etc/sysconfig/network-scripts/ifcfg-ethX文件,删除关于MAC

Device eth0 does not seem to be present,delaying initialization解决方法

Bringing up interface eth0:  Device eth0 does not seem to be present, delaying initialization. 在linux下的虚拟机出现了这个问题,原因是要修改固定ip,作了部分修改. 故障现象:[[email protected]~]# service network restart Shutting down loopback insterface:                                

linux 网卡问题 Device eth0 does not seem to be present,delaying initialization.

Device eth0 does not seem to be present,delaying initialization. 网上搜索后才发现原因所在:原来vmware在复制了虚拟机后会自动生成一个新的网卡设备供该虚拟机使用,比如 原先的网卡是eth0,复制虚拟机后后就会增加eth1.但是由于没有生成相应的/etc/sysconfig/network-scripts /ifcfg-eth1文件,导致网络连接失败,这个应该是vmware的一个bug. 查看网卡配置文件/etc/udev/rul

clone vmware虚拟机,启动的时候出现device eth0 does not seem to be present, delaying initialization错误

克隆了一个centos虚拟机,但是出现错误:device eth0 does not seem to be present, delaying initialization,可以尝试以下两种方式 1.vi /etc/sysconfig/network-scripts/ifcfg-eth0ifcfg-eth0的配置文件里保存了以前的MAC地址,就把这一行删除掉在重启网卡 2./etc/udev/rules.d/70-persistent-net.rules 删除后重启机器因为这个文件绑定了网卡和m