intel219网卡的linux驱动,ubuntu16.04安装I219-V网卡驱动问题解决方法(示例代码)

安装ubuntu16.04 LTS后无网络连接的解决方法:

1、查看是否安装网卡驱动

打开终端,输入ifconfig –a,如果出现“本地环回”字样,说明网卡驱动未安装。

2、查看网卡型号

终端输入lspci,查看网卡型号,本文只针对I219-V网卡驱动。

3、下载e1000e网卡驱动,下载地址https://downloadcenter.intel.com/zh-cn/download/15817?_ga=1.159975677.114505945.1484457019

因官网i219-V驱动无法安装成功,google发现e1000e可以支持I2xx网卡(见参考资料1)。

4、拷贝下载的tar.gz文件至选择的目录,如使用 "/home/< 用户名 >/e1000E”或“ /usr/local/src/e1000E”。

5、解压缩档案,, 其中是驱动程序 tar 文件的版本号:

tar zxf E1000E-.tar.gz

6、切换到驱动程序 src 目录下, 其中 x.x.x<> 是驱动程序 tar 文件的版本号:

cd e1000E-x.x.x<>/src/

7、编译驱动程序模块(需root用户):

make install

8、使用 modprobe 命令加载模块:

modprobe e1000e

如果网线已插好,会发现网络已连接。

参考资料:

1、http://unix.stackexchange.com/questions/294753/intel-ethernet-connection-i219-v-not-working-under-linux-on-an-asuspro-b-laptop

2、http://www.intel.cn/content/www/cn/zh/support/network-and-i-o/ethernet-products/000005480.html

你可能感兴趣的:(intel219网卡的linux驱动,ubuntu16.04安装I219-V网卡驱动问题解决方法(示例代码))