Instalación del controlador X520 DA2 de la tarjeta de red 10 Gigabit en Ubuntu 18.04

Dirección de descarga del sitio web oficial del controlador X520 DA2

Descargas para Adaptador de red convergente Intel® Ethernet X520-DA2

Ubuntu instalar el controlador ixgbe pasos

(1) Local de instalación

Antes de la instalación, debe instalar los kits de desarrollo y los archivos de encabezado del kernel correspondientes.

apt-get install linux-headers-$(uname -r)
apt-get install gcc make

(2) Compilar el controlador Ixgbe

# 下载源码
wget https://downloadmirror.intel.com/14687/eng/ixgbe-5.7.1.tar.gz

# 解压缩
tar zxf ixgbe-5.7.1.tar.gz

# 编译
cd ixgbe-5.7.1/src
make

# 检查Ixgbe驱动
modinfo ./ixgbe.ko

# 删除系统中旧的Ixgbe驱动,如有
lsmod |grep -i ixgbe
rmmod ixgbe

# 添加新驱动
insmod ./ixgbe.ko
#如果你需要,你可以尝试加入额外的参数。比如,设置RSS的队列数量为16:
insmod ./ixgbe.ko RSS=16

#安装Ixgbe驱动
make install
# 加载驱动
modprobe ixgbe

# 如果你希望在启动时加载ixgbe驱动,可以:

在/etc/modules的最后加入“ixgb

(3) Reinicie el servidor

Documentos de referencia

Supongo que te gusta

Origin blog.51cto.com/wutengfei/2540837
Recomendado
Clasificación