Oracle   发布时间:2022-05-17  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了How to solve “Device eth0 does not seem to be present, delaying initialization” error大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

Today,I encountered with a strange error after I cloned CentOS 6 guest machine In Oracle VirtualBox. After logging in to CentOS guest,my network card is disappeared. I can’t SSH to the CentOS guest anymore. I trIEd to check the IP address using command:

# ifconfig

Sample output:

 lo link encap:Local LoopBACk 
 inet addr:127.0.0.1 Mask:255.0.0.0
 inet6 addr: ::1/128 Scope:Host
 UP LOOPBACK RUNNING MTU:65536 Metric:1
 RX packets:0 errors:0 dropped:0 overruns:0 frame:0
 TX packets:0 errors:0 dropped:0 overruns:0 carrIEr:0
 collisions:0 txqueuelen:0 
 RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)

eth0 config details doesn’t show up. It only displays the loopBACk interface details.

I trIEd to restart the network service to sort out the issue.

# service network restart

nothing! It simply displayed the following error.

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

@H_430_24@method 1:

To fix this problem,simply remove the file /etc/udev/rules.d/70-persistent-net.rules and reboot your system.

# rm /etc/udev/rules.d/70-persistent-net.rules

Now,you will see the network card is up.

@H_430_24@method 2:

If the problem is still not solved,open up the Eth0 config file:

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

Note down the MAC ID (HWADDR). change HWADDR to your VMWare Network Card Mac address

[...]
HWADDR=08:00:27:DC:33:3F
[...]

大佬总结

以上是大佬教程为你收集整理的How to solve “Device eth0 does not seem to be present, delaying initialization” error全部内容,希望文章能够帮你解决How to solve “Device eth0 does not seem to be present, delaying initialization” error所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签: