2-1对于在VMware克隆虚拟机centOSLinux的时候,找不到IP地址的解决办法

我们在VMware克隆虚拟机centOSLinux的时候,找不到IP地址,如图。 

2-1对于在VMware克隆虚拟机centOSLinux的时候,找不到IP地址的解决办法
开启网关会报错

 Device eth0 does not seem to be present,delaying initialization. 
 

2-1对于在VMware克隆虚拟机centOSLinux的时候,找不到IP地址的解决办法
重启网关也会报错

2-1对于在VMware克隆虚拟机centOSLinux的时候,找不到IP地址的解决办法

重点内容 解决

打开/etc/udev/rules.d/70-persistent-net.rules

vim /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 0x8086:0x100f (e100)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:0c:29:bf:b3:cc", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"
# PCI device 0x1022:0x2000 (pcnet32)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:0c:29:ba:64:79", ATTR{type}=="1", KERNEL=="eth*", NAME="eth1"
1


2-1对于在VMware克隆虚拟机centOSLinux的时候,找不到IP地址的解决办法


此时,我们需要记录eth1的mac地址 00:0c:29:ba:64:79

打开/etc/sysconfig/network-scripts/ifcfg-eth0

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


将 DEVICE=eth0 改成 DEVICE=eth1 , 
将 HWADDR 改成上面的mac地址 HWADDR=00:0c:29:ba:64:79

2-1对于在VMware克隆虚拟机centOSLinux的时候,找不到IP地址的解决办法

最后重启网络

 service network restart

2-1对于在VMware克隆虚拟机centOSLinux的时候,找不到IP地址的解决办法
查看IP地址 

2-1对于在VMware克隆虚拟机centOSLinux的时候,找不到IP地址的解决办法
OK ,成功可以获取到IP地址啦,开心心