方案:
以下内容来自:intel219网卡的linux驱动,ubuntu16.04安装I219-V网卡驱动问题解决方法(示例代码)_Mustafa先生的博客-CSDN博客
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
问题:
1、执行make 时报错:
CONFIG_X86_X32 enabled but no binutils support
我的错误原因是缺少依赖:
建议先将软件更新之后,在装这些依赖。
sudo apt-get install gcc
sudo apt install make
2、modprobe e1000e时报错:
主板关闭scure boot
https://jingyan.baidu.com/article/4dc408487a3d16c8d946f1af.html
3、
sudo passwd
————————————————
版权声明:本文为CSDN博主「Pikachu_simple」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/qq_42804678/article/details/123639944
原创文章,作者:506227337,如若转载,请注明出处:https://blog.ytso.com/268272.html