安装ubuntu14.04遇到网卡驱动不成功问题

今天安装ubuntu14.04,发现台式机不能上网,后来才发现是我的网卡驱动没安装成功。

上网找了这篇博客,按照步骤操作完,还真成功了。


根据http://blog.chinaunix.NET/uid-11829250-id-5748402.html博客的建议,我也去试着安装了一下,步骤如下:


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.编译安装:make install,将编译好的驱动(e1000e.ko)安装到/lib/modules/3.16.0-30-generic/updates/drivers/net/ethernet/intel/ethernet/intel/e1000e/e1000e.ko
6.载入驱动模块到内核:modprobe e1000e,此时正常情况下,就可以检测到网卡,并能上网了。
7.如果第6步没有检测到网卡,尝试使用如下命令插入驱动模块到内核:
insmod /lib/modules/3.16.0-30-generic/updates/drivers/net/ethernet/intel/ethernet/intel/e1000e/e1000e.ko,然后重启ubuntu,就可以上网了。


需要安装包的朋友可以去该网址下载:

http://download.csdn.Net/detail/zouroot/9757709


博客地址:

http://www.jb51.cc/article/p-aryzzara-bdx.html

相关文章

目录前言一、创建Hadoop用户二、更新apt和安装Vim编辑器三、...
原文连接:https://www.cnblogs.com/yasmi/p/5192694.html ...
电脑重启后,打开VirtualBox,发现一直用的虚拟机莫名的消失...
参见:https://blog.csdn.net/weixin_38883338/article/deta...
Ubuntu 18.04 LTS 已切换到 Netplan 来配置网络接口。Netpla...
介绍每个 Web 服务都可以通过特定的 URL 在 Internet 上访问...