0
点赞
收藏
分享

微信扫一扫

Linux 安装网卡驱动

小美人鱼失去的腿 2024-06-09 阅读 13
Linux运维

错误信息

# tail -f /var/log/messages

Oct 21 07:17:46 master-b11 kernel: ixgbe 0000:3b:00.0: Warning firmware error detected FWSM: 0x80218044

Oct 21 07:17:46 master-b11 kernel: ixgbe 0000:3b:00.1: Warning firmware error detected FWSM: 0x80218044

Oct 21 07:17:48 master-b11 kernel: ixgbe 0000:3b:00.0: Warning firmware error detected FWSM: 0x80218044


官方下载驱动:注意主持系统版本,网卡版本

https://www.intel.cn/content/www/cn/zh/download/14302/762483/intel-network-adapter-driver-for-pcie-intel-10-gigabit-ethernet-network-connections-under-linux.html

安装方法

tar -xvf ixgbe-5.18.6.tar.gz

cd ixgbe-5.18.6/

cd scripts/

./set_irq_affinity local ens1f0

./set_irq_affinity local ens1f1

cd ..

cd src/

make

make install



cd /lib/modules/

ll

drwxr-xr-x. 3 root root   19 Oct 17 20:36 4.18.0-372.2.1.el8.x86_64

drwxr-xr-x. 6 root root 4096 Oct 21 07:06 4.18.0-372.32.1.el8_6.x86_64

drwxr-xr-x. 6 root root 4096 Oct 17 20:45 4.18.0-372.9.1.el8.x86_64

cd 4.18.0-372.32.1.el8_6.x86_64

modinfo ixgbe

/lib/modules/4.18.0-372.32.1.el8_6.x86_64/updates/drivers/net/ethernet/intel/ixgbe/ixgbe.ko

modprobe ixgbe ens1f0

modprobe ixgbe ens1f1

modprobe ixgbe bond0

查看无报错

tail -f /var/log/messages

举报

相关推荐

0 条评论