虚拟机解决Device eth0 does not seem to be present 问题。

时间:2021-09-28 06:12:06

Device eth0 does not seem to be present...

出现这个问题基本上是因为虚拟机是克隆的导致机器的mac网卡不一致,所以系统识别网卡失败:

虚拟机解决Device eth0 does not seem to be present 问题。

查看/etc/udev/rules.d/70-persistent-net.rules这个文件内容如下:

虚拟机解决Device eth0 does not seem to be present 问题。

解决方法大致上是一样的

  1:删除/etc/udev/rules.d/70-persistent-net.rules这个文件后重启系统,让系统重新获取mac地址,然后重新记录ATTR(也就是mac)地址,然后到/etc/sysconfig/network-scripts/ifcfg-eth0 这里重新将HWADDR改成一致即可。

  2:不想重启系统的同学可以这样:记录eth1的网卡mac地址,然后到/etc/sysconfig/network-scripts/ifcfg-eth0 这里将 DEVICE="eth0"  改成  DEVICE="eth1",将HWADDR改成一致即可~

  3:重启网卡:/etc/init.d/network restart