On four raspberry PI 4 (arm64), I have Ubuntu 23.10 installed. For Longhorn storage on Kubernetes, I need iscsi_tcp module. Using kernel 6.5.0-1007-raspi (#9). I have installed linux-modules-extra-raspi, and I have tried installing open-iscsi (says already installed).
I've been trying steps from this question/answer without success.
I've been trying different combinations of installing/purging linux-modules-extra-raspi, linux-modules-extra-6.5.0-1007-raspi, and open-isci on the nodes, trying to get the isci_tcp module installed still to no avail.
Occasionally, I can get to a point where lsmod iscsi_tcp
shows that it exists on a nodes (but later, after trying things, it does not appear). In all cases, at all times modprobe iscsi_tcp
shows:
modprobe: FATAL: Module iscsi_tcp not found in directory /lib/modules/6.5.0-1007-raspi
Also, when I install a generic version of the extras, I see two entries:
ii linux-modules-extra-6.5.0-1007-raspi 6.5.0-1007.9 arm64 Linux kernel extra modules for version 6.5.0 on ARMv8 SMP
ii linux-modules-extra-raspi 6.5.0.1007.8 arm64 Raspberry Pi Linux kernel extra modules
If I install the specific linux-modules-extra-6.5.0-1007-raspi, I see just the top entry.
I did a package search for "iscsi-top" (https://packages.ubuntu.com/search?suite=mantic&arch=arm64&mode=exactfilename&searchon=contents&keywords=iscsi_tcp) and for 23.10, I see these (partial list):
/usr/src/linux-headers-6.5.0-1004-laptop/include/config/ISCSI_TCP linux-headers-6.5.0-1004-laptop
/usr/src/linux-headers-6.5.0-1005-raspi/include/config/ISCSI_TCP linux-headers-6.5.0-1005-raspi
/usr/src/linux-headers-6.5.0-1007-azure/include/config/ISCSI_TCP linux-headers-6.5.0-1007-azure
/usr/src/linux-headers-6.5.0-1007-gcp/include/config/ISCSI_TCP linux-headers-6.5.0-1007-gcp
I've got a bunch of questions...
- The top entry of linux-modules-extra-6.5.0-1007-raspi (6.5.0-1007.9) says ARMv8 SMP. Is that the correct module for Raspberry PI arm64?
- In the package list, it seems like raspi version is only on 6.5.0-1005. Does that mean it is not in 6.5.0-1007 and I need to use an older kernel?
- Am I missing some step here in trying to get the needed module installed?
- If I have to downgrade the kernel, can anyone point me to instructions on how to do that?
Thanks!