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

ubuntu 16.04网卡找不到eth0

时间:2017-07-05 18:46:01      阅读:374      评论:0      收藏:0      [点我收藏+]

标签:-o   auto   sde   ifconfig   版本   name   grub   cmd   log   

自15版本开始就不叫eth0。可以通过ifconfig进行查看:

ifconfig -a

技术分享

其中enp3s0才是网卡的名称,lo为环路。 

参考:

http://blog.csdn.net/christne1225i/article/details/54914829

如果想要变回eth0也是可以的,参考以下步骤(没测试过):

1、

sudo vi /etc/default/grub 

找到GRUB_CMDLINE_LINUX=”” 

改为GRUB_CMDLINE_LINUX=”net.ifnames=0 biosdevname=0” 

然后

sudo grub-mkconfig -o /boot/grub/grub.cfg 

重启后,网卡名称变成eth0和wlan0

2、打开/etc/network/interfaces文件默认的内容如下: 

auto lo 
iface lo inet loopback 

在后面添加内容 

#两种方法任选一个
#1、获取动态配置: 
auto eth0 
iface eth0 inet dhcp 
#2、获取静态配置: 
auto eth0 
iface eth0 inet static 
address 192.168.0.1 
netmask 255.255.255.0 
gateway 192.168.0.1 

重启即可生效。

参考:http://blog.csdn.net/wenwenxiong/article/details/52937539

ubuntu 16.04网卡找不到eth0

标签:-o   auto   sde   ifconfig   版本   name   grub   cmd   log   

原文地址:http://www.cnblogs.com/EasonJim/p/7122834.html

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