ubuntu14.04不能上网“没有可用的网络设备”

前端之家收集整理的这篇文章主要介绍了ubuntu14.04不能上网“没有可用的网络设备”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在Linux中你正在使用的网卡是什么

sudo lshw-C network

或 lspci

我的是intel的,联想电脑:

以下参考:

http://blog.chinaunix.net/uid-11829250-id-5748402.html

联想服务器ThinkStation P310,在安装完ubuntu14.04(64bit)LTS后,不能上网。这是由于网卡驱动没有安装成功,需要自己安装网卡驱动。
ThinkStation P310的主板类型是skylake,网卡型号是Intel Ethernet ConnectionI219LM。在Intel官网并没有找到I219LM for Linux的驱动。不过看到一个帖子说,@H_502_44@I219LM网卡和I218的网卡没什么区别,因此决定使用I218的网卡驱动。
1.从intel官网下载I218 for LINUX的驱动压缩包e1000e-3.3.4.tar.gz(https://downloadcenter.intel.com/download/15817)
2.ubuntu下切换到root:sudo -i
3.解压网卡驱动tar -xzvf e1000e-3.3.4.tar.gz
4.cd e1000e-3.3.4/src
5.编译安装:sudomake install,(卸载 make uninstall)将编译好的驱动(e1000e.ko)安装到/lib/modules/3.16.0-30-generic/updates/drivers/net/ethernet/intel/ethernet/intel/e1000e/e1000e.ko
6.载入驱动模块到内核:sudomodprobe e1000e(卸载用modprob
e -r e1000e,此时正常情况下,就可以检测到网卡,并能上网了。

7.如果第6步没有检测到网卡,尝试使用如下命令插入驱动模块到内核:
insmod /lib/modules/3.16.0-30-generic/updates/drivers/net/ethernet/intel/ethernet/intel/e1000e/e1000e.ko,然后重启ubuntu,就可以上网了。(卸载用rmmod 命令)


到此有线可以上网。

原文链接:https://www.f2er.com/ubuntu/354443.html

猜你在找的Ubuntu相关文章