Linux的网卡由eth0变成了eth1,如何修复(一步到位版)

root登陆系统
1、删除原来的配置信息
rm -f /etc/sysconfig/network-scripts/ifcfg-eth*
rm -f /etc/udev/rules.d/70-persistent-net.rules
2、重新设置静态ip
vi /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0
ONBOOT=yes
TYPE=Ethernet
BOOTPROTO=static
IPADDR=192.168.1.191
NETMASK=255.255.255.0
GATEWAY=192.168.1.1
DNS1=192.168.1.1
3 重启,执行命令:reboot 
 
ifconfig 可以得到重新生成eth0的网卡

你可能感兴趣的:(linux)