CentOS版本
[root@centos ~]# cat /etc/redhat-release
CentOS Linux release 7.5.1804 (Core)
重命名&修改网卡配置
mv ifcfg-ens33 ifcfg-eth0
NAME=eth0
DEVICE=eth0
修改grup
/etc/sysconfig/grub
改之前
GRUB_CMDLINE_LINUX="crashkernel=auto rd.lvm.lv=centos/root rd.lvm.lv=centos/swap rhgb quiet"
改了之后
GRUB_CMDLINE_LINUX="crashkernel=auto rd.lvm.lv=centos/root rd.lvm.lv=centos/swap net.ifnames=0 biosdevname=0 rhgb quiet"
对比发现就是多了
net.ifnames=0 biosdevname=0
生成启动菜单
grub2-mkconfig -o /boot/grub2/grub.cfg
重启
网友评论