目录
- 1. 查看网卡驱动
- 2.下载网卡驱动
- 3. 安装驱动
1. 查看网卡驱动
lspci | grep -i Ethernet
wyw@wyw-linux:~/work/LinuxStich$ lspci | grep -i Ethernet
00:1f.6 Ethernet controller: Intel Corporation Device 15fa (rev 11)
wyw@wyw-linux:~/work/LinuxStich$
2.下载网卡驱动
15fa对应的e1000e-3.8.4
https://www.intel/content/www/us/en/download/14611/15817/intel-network-adapter-driver-for-pcie-intel-gigabit-ethernet-network-connections-under-linux-final-release.html?
3. 安装驱动
tar zxvf e1000e-3.8.4.tar.gz
cd e1000e-3.8.4/src/
sudo make install
sudo modprobe -r e1000e
sudo modprobe e1000e
参考:
https://blog.csdn/qq_39958380/article/details/127082069
https://blog.csdn/shuziyiminhuyidao/article/details/128225826
发布评论