標籤:
複製的系統,重啟網卡時,報錯!
複製的系統,首先它的物理地址是一樣的,所以要先產生一個物理地址。第一步刪除/etc/udev/rules.d/70-persistent-net.rules檔案#rm -rf /etc/udev/rules.d/70-persistent-net.rules第二步:重啟系統 #reboot產生物理地址儲存在哪裡呢?
在這裡:[[email protected] ~]# cat /etc/udev/rules.d/70-persistent-net.rules這個時候還不行,需要修改網路IP設定檔中IP地址及MAC地址和70-persistent-net.rulesMAC一致,修改裝置名稱,也要一致:
[[email protected] rules.d]# cat 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 (e1000) SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:0c:29:3d:bd:b4", ATTR{type}=="1", KERNEL=="eth*", NAME="eth1" [[email protected] rules.d]# vi /etc/sysconfig/network-scripts/ifcfg-eth0 |
第三步:編輯MAC地址
[[email protected]linux ~]# vi /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE="eth1" BOOTPROTO="static" HWADDR="00:0c:29:3d:bd:b4" NM_CONTROLLED="yes" ONBOOT="yes" TYPE="Ethernet" UUID="c3eedb2c-5894-4a7e-8f3e-8575667d44b3" IPADDR=192.168.10.32 PREFIX=24 GATEWAY=192.168.10.2 DNS1=8.8.8.8 |
第四步:重啟網卡
#service network restart
Linux解決Device eth0 does not seem to be present