Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fuse module not getting loaded #11808

Open
garimakhulbe02 opened this issue Jan 7, 2025 · 1 comment
Open

Fuse module not getting loaded #11808

garimakhulbe02 opened this issue Jan 7, 2025 · 1 comment
Labels
question Further information is requested

Comments

@garimakhulbe02
Copy link

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.

Image

Using Mariner version..
Image

Image

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?

@garimakhulbe02 garimakhulbe02 added the question Further information is requested label Jan 7, 2025
@zcobol
Copy link

zcobol commented Jan 8, 2025

@garimakhulbe02 CONFIG_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!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

2 participants