安装完ubuntu 16.04连接网线无法上网解决

安装完成ubuntu 16.04版本后,无法上网,在图形化管理界面上配置好ip,netmask,gateway后仍是如此。
ifconfig命令查看后,也是有网卡信息的,可是ifdown 网卡 提示unknown interface。查看/etc/network/interfaces 发现只有lo。于是添加网卡信息。

一、编辑/etc/network/interfaces

sudo vim /etc/network/interfaces

增加如下内容

auto lo
iface lo inet loopback

auto 网卡名

iface 网卡名 inet static
address IP
netmask 子网掩码
gateway 网关

三、重启网络

sudo /etc/init.d/networking restart

出错:

[…] Restarting networking (via systemctl): networking.serviceJob for networking.service failed because the control process exited with error code. See “systemctl status networking.service” and “journalctl -xe” for details.

重启ubutu,再次重启网络,这时候ifconfig 网卡名 应该就不会报错。

但是还是不能上网,发现不能够ping通网关,找不到原因,关机睡一觉重启发现好使了,很奇怪。

之后也遇到过ping不通网关的事,关机等一会再开机就好了。

你可能感兴趣的:(Linux)