eth0: error fetching interface information: Device not found,eth0fetching
轉載,原文出處:http://zh888.blog.51cto.com/1684752/775447
親測有效,感謝作者!!!
----------------------------分割線----------------------------------------------------
eth0不見了的處理方法 1.剛開始運行ifconfig eth0發現網卡不見了。
[root@localhost ~]# ifconfig eth0
eth0: error fetching interface information: Device not found //但是network-scripts裡的設定檔全部是eth0的,為什麼擷取不到也不知道為什麼?
處理解決方案只能用eth1替換eth0了,自己建立modprobe.conf檔案裡面alias eth0 e1000e但是不能識別。 2.[root@localhost network-scripts]# mii-tool //查看網卡串連狀態
   eth1: negotiated 100baseTx-FD, link ok 3.[root@localhost network-scripts]# ifconfig eth1//能發現eth1網卡 4.[root@localhost network-scripts]# mv ifcfg-eth0 ifcfg-eth1//修改eth0為eth1 5.[root@localhost network-scripts]# vi ifcfg-eth1
DEVICE=eth1//把eth1修改為eth0
ONBOOT=yes//啟動啟用
TYPE=Ethernet
BOOTPROTO=static//靜態ip
IPADDR=192.168.xx.40
NETMASK=255.255.255.0
GATEWAY=192.168.xx.254 6.[root@localhost ~]# cd /etc/sysconfig/networking/ //進入networking目錄
[root@localhost networking]# ls//裡面有兩個檔案把裡面的裝置修改為ifcfg-eth1即可。
devices  profiles 7.[root@localhost devices]# /etc/rc.d/init.d/network restart //重新啟動network守護進程。
Shutting down interface eth1:                              [  OK  ]
Shutting down loopback interface:                          [  OK  ]
Bringing up loopback interface:                            [  OK  ]
Bringing up interface eth1:                                [  OK  sss] 8.[root@localhost devices]# ping www.baidu.com //最後ping 百度通了
PING www.a.shifen.com (220.181.111.148) 56(84) bytes of data.
64 bytes from 220.181.111.148: icmp_seq=1 ttl=52 time=33.1 ms
64 bytes from 220.181.111.148: icmp_seq=2 ttl=52 time=33.3 ms
64 bytes from 220.181.111.148: icmp_seq=3 ttl=52 time=33.4 ms 遇到的問題:
剛開始因為以為驅動問題,lsmod看了一下載入的驅動為e1000e,所以在 /etc/modprobe.d/裡添加了modprobe.conf檔案可是還是不行。
dmesg查看啟動資訊查看網卡資訊為e1000: eth1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None
後來查看/lib/modules/2.6.32-71.el6.i686/modules.alias 添加alias eth0 e1000e 還是不行,只能用eth1代替eth0