Device eth0 does not seem to be present, delaying initialization

简介:

当你启动vm中的network时出现了这个错误:

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


解决方法是:

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

找到对应的HWADDR, 同时查看右键单击虚拟机,找到:

wKiom1Y6GDWDZsSAAAKbGNTPNPA777.jpg 

记下这个HWADDR,然后关闭VM,编辑这个vm修改MAC Address为刚才vm中出现的mac

然后重启vm

在service network restart

就可以了

 

本文转自 zhangfang526 51CTO博客,原文链接:http://blog.51cto.com/zhangfang526/1709805



相关文章
|
11月前
|
机器学习/深度学习 PyTorch 算法框架/工具
解决RuntimeError: Expected all tensors to be on the same device, but found at least two devices, cp
对应两种保存模型的方式,pytorch也有两种加载模型的方式。对应第一种保存方式,加载模型时通过torch.load(‘.pth’)直接初始化新的神经网络对象;对应第二种保存方式,需要首先导入对应的网络,再通过net.load_state_dict(torch.load(‘.pth’))完成模型参数的加载。
817 0
|
安全
解决:efi usb device has been blocked by the current security policy
解决:efi usb device has been blocked by the current security policy 问题描述:U盘装系统或者其他操作时,是因为BIOS安全策略,出现上述错误无法进入后续步骤。 解决方法:按F2(Fn+F2)进入BIOS,在secure Boot 中security选择disable。解决! 延伸(可不读): 黑苹
10758 0