Unable to Load NVMe-TCP Driver on Ubuntu 22.04/24.04
We have seen this error on a Ubuntu 22.04/24.04:
sudo modprobe nvme-tcp
modprobe: FATAL: Module nvme-tcp not found in directory /lib/modules/6.5.0-1018-azure
To fix this issue, perform the following step commands:
sudo apt install linux-generic -y
sudo apt install --reinstall linux-image-$(uname -r) -y
sudo apt install --reinstall linux-modules-$(uname -r) -y
sudo apt install --reinstall linux-modules-extra-$(uname -r) -y
After the above commands, this window will pop up automatically. Restart all services here.
Now you should be able to load the NVMe-TCP driver.