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

安装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




猜你喜欢

转载自blog.csdn.net/zouroot/article/details/55671650
今日推荐