码迷,mamicode.com
首页 > 系统相关 > 详细

linux ifcfg-33 没有eth0解决方法

时间:2019-08-04 19:55:28      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:inux   htm   x86_64   console   tor   class   cmd   网卡配置   initramfs   

解决方法

1:检查网卡

[root@localhost ~]# vi /etc/sysconfig/network-scripts/ifcfg-ens33 是不是配置正确

2.重命名网卡配置文件ifcfg-ens33为ifcfg-eth0

mv ifcfg-ens33 ifcfg-eth0

3.编辑/etc/default/grub并加入“net.ifnames=0 biosdevname=0 ”到GRUBCMDLINELINUX变量

[root@localhost network-scripts]# vi /etc/default/grub  
  
GRUB_TIMEOUT=5  
GRUB_DISTRIBUTOR="$(sed ‘s, release .*$,,g‘ /etc/system-release)"  
GRUB_DEFAULT=saved  
GRUB_DISABLE_SUBMENU=true  
GRUB_TERMINAL_OUTPUT="console"  
GRUB_CMDLINE_LINUX="crashkernel=auto net.ifnames=0 biosdevname=0 rhgb quiet"  
GRUB_DISABLE_RECOVERY="true"

4.运行命令grub2-mkconfig -o /boot/grub2/grub.cfg 来重新生成GRUB配置并更新内核参数。  

[root@localhost network-scripts]# grub2-mkconfig -o /boot/grub2/grub.cfg  
Generating grub configuration file ...  
Found linux image: /boot/vmlinuz-3.10.0-514.el7.x86_64  
Found initrd image: /boot/initramfs-3.10.0-514.el7.x86_64.img  
Found linux image: /boot/vmlinuz-0-rescue-b7f83ca165964a47b8b283907b126140  
Found initrd image: /boot/initramfs-0-rescue-b7f83ca165964a47b8b283907b126140.img  
done

 

5.重启电脑   reboot

 

https://www.cnblogs.com/yufeng218/p/8099213.html 参考此博客的

linux ifcfg-33 没有eth0解决方法

标签:inux   htm   x86_64   console   tor   class   cmd   网卡配置   initramfs   

原文地址:https://www.cnblogs.com/ict-xiaoye/p/11299064.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!