-
Notifications
You must be signed in to change notification settings - Fork 54
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
Segmentation fault on ls -l in Alpine Linux #153
Comments
I'm using only client_id, client_secret and refresh_token. So maybe one of the other options. Try without: get_extended_metadata=false |
Thanks for your reply.
Unfortunately I'm getting the same error
|
And I suppose this is only from a Docker image? It works fine on the host? |
I don't have at the moment an host with Alpine Linux. I can setup a VM to test it if needed. |
At this stage you'll need to build in debug mode and to run under GDB to see where the crash happens. |
I have no idea where to start to do that, I'll read up.
|
Indeed, I don't know either how to run a fuse application under GDB. The solution would be to compile in debug mode without optimization: $ CFLAGS=-g ./configure You'll need to have more debug info into the code itself to trace where the crash happens. I have no better solution. Given the error above it sounds like the issue is in the musl (a libc implementation) which is probably what the docker env is using. |
I have compiled in debug mode using
as you suggested.
When I run
I get
and running hubicfuse
In dmesg I still see the error
Another thing worth to mention is the 2 warnings that I'm getting while compiling but I don't know if they are relevant.
Is there anything else that I can do to debug more? |
Hi,
I'm trying to build a Docker Image with Alpine Linux to use hubicfuse.
This is how I'm building the Docker Image
then I run the Docker Container with
and inside I mount a directory with hubicfuse as explained in the README
When I do an
everything is working fine
But when I type ls -l I get a segmentation fault
This is the content of my $HOME/.hubicfuse file
What could be the problem?
Thanks
Massimo
The text was updated successfully, but these errors were encountered: