Just new to this. I was wondering how to install mellanox ofed drivers for my ubuntu 22.04.5 LTS with kernel version 5.15.0-131-generic…
I have checked this link(Linux InfiniBand Drivers)… But was wondering which one will support for the above said ubuntu OS 22.04.5 LTS and with the kernel version 5.15.0-131-generic and the network cards. (Mellanox Technologies MT43244 BlueField-3 integrated ConnectX-7 network controller & Infiniband controller [0207]: Mellanox Technologies MT2910 Family [ConnectX-7])
Select the 24.10-1.1.4.0-LTS that supports Ubuntu 22.04 .
Download the appropriate package
Extract it on the host
Run the installation: sudo ./mlnxofedinstall --add-kernel-support
The --add-kernel-support flag ensures the driver is compiled for your current kernel.
If installation fails due to kernel mismatch, install required headers
sudo apt update
sudo apt install -y linux-headers-$(uname -r) linux-modules-extra-$(uname -r)
and then, re-run mlnxofedinstall.