ubuntu 16.04网卡找不到eth0
Posted Jim
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu 16.04网卡找不到eth0相关的知识,希望对你有一定的参考价值。
自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的主要内容,如果未能解决你的问题,请参考以下文章
Linux安装Intel无线网卡(Ubuntu 16.04)
Linux修改网卡名称enss33到eth0--Ubuntu16和centos7