linux下eth0变成eth1等修护

将eth1变为eth0 以前的时候有两块网卡,主板集成的8139是eth1,PCI插槽上的Intel e100是eth0;后来将e100拿掉之后,发现系统的网卡还是显示eth1!

硬件设备的识别与侦测在2.6中都是使用udev来实现的,到/etc/udev/rules.d中,修改z25_persistent- net.rules,将eth1网卡mac指定的名字改为eth0,这样再修改/etc/network/interfaces文件中的网络配置,重启 udev和networking就可以了。

fisherman:/etc/udev/rules.d# /etc/init.d/udev restart
Stopping the hotplug events dispatcher: udevd.
Starting the hotplug events dispatcher: udevd.
fisherman:/etc/udev/rules.d# /etc/init.d/networking restart
Reconfiguring network interfaces...done.
fisherman:/etc/udev/rules.d#  

网卡的名字就改为eth1了,hoho。