You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to run blobfuse2 on cbl2 and running into error for fuse module not loaded. Issue is fuse is showing up in lsmod but not loaded. I tried to manually loaded it using modprobe but no luck. How to load fuse on cbl2? It seems to me kernel can't load it.
Using Mariner version..
What I get from online is CONFIG_FUSE_FS will be set to y if module is loaded. I am not sure why it is looking at /lib/modules/ directory.
Any help or pointers to solve this?
The text was updated successfully, but these errors were encountered:
@garimakhulbe02CONFIG_FUSE_FS=y means the fuse support is build into the kernel and not a module.
In your case it is a module (CONFIG_FUSE_FS=m) and lsmod | grep fuse shows that the module is loaded already. lsmod command shows what kernel modules are currently loaded.
Run modinfo fuse to see exactly what module is it. Full path of the module should be /lib/modules/5.15.167.1-2.cm2/kernel/fs/fuse/fuse.ko.xz
Unload the module and run sudo depmod -a to regenerate modules dependencies. Reload the module. It might help!
I am trying to run blobfuse2 on cbl2 and running into error for
fuse
module not loaded. Issue isfuse
is showing up inlsmod
but not loaded. I tried to manually loaded it usingmodprobe
but no luck. How to load fuse on cbl2? It seems to me kernel can't load it.Using Mariner version..
What I get from online is
CONFIG_FUSE_FS
will be set toy
if module is loaded. I am not sure why it is looking at /lib/modules/ directory.Any help or pointers to solve this?
The text was updated successfully, but these errors were encountered: