Skip to content

[App] Beta 1.2.1 - Ubuntu - Error launching the AppImage #402

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

Open
Dylan-86 opened this issue Apr 15, 2025 · 4 comments
Open

[App] Beta 1.2.1 - Ubuntu - Error launching the AppImage #402

Dylan-86 opened this issue Apr 15, 2025 · 4 comments

Comments

@Dylan-86
Copy link
Contributor

I just tried the new appImage for Ubuntu

./Void-1.2.0.25104.glibc2.29-x86_64.AppImage

When I run it, I get the following output:

sed: /tmp/.mount_Void-1nTqzUt/lib/x86_64-linux-gnu/libselinux.so.1: no version information available (required by sed)
/tmp/.mount_Void-1nTqzUt/AppRun: 10: exec: /usr/share/void/void: not found

The warning from sed is not a blocker, but the second line is — the app doesn't start.

Investigation

Let's go:
I extracted the AppImage using:
./Void-1.2.0.25104.glibc2.29-x86_64.AppImage --appimage-extract

Then checked the contents:

cd squashfs-root
find . -type f -iname 'void'
./usr/share/bash-completion/completions/void
./usr/share/void/bin/void
./usr/share/void/resources/completions/bash/void
./usr/share/void/void

the binary exist inside the extracted AppImage

./usr/share/void/void

And if I run it manually:

chmod +x ./usr/share/void/void
./usr/share/void/void

…it works as expected.

Conclusion
It looks like the AppRun script is trying to launch the binary using an absolute path:
exec /usr/share/void/void

Please consider changing the AppRun script to use a relative path instead, like:

exec ./usr/share/void/void "$@"
ok
exec "$(dirname "$0")/usr/share/void/void" "$@"

Dylan

Dylan-86 added a commit to Dylan-86/void that referenced this issue Apr 15, 2025
@andrewpareles
Copy link
Contributor

Thanks, this is super helpful!

@andrewpareles andrewpareles changed the title Beta 1.2.1 - Ubuntu - Error launching the AppImage [Bug] Beta 1.2.1 - Ubuntu - Error launching the AppImage Apr 18, 2025
@andrewpareles andrewpareles changed the title [Bug] Beta 1.2.1 - Ubuntu - Error launching the AppImage [App] Beta 1.2.1 - Ubuntu - Error launching the AppImage Apr 18, 2025
@Wawilow
Copy link

Wawilow commented Apr 25, 2025

Same error on Void-1.2.1.25105.glibc2.29-x86_64.AppImage

sed: /home/user/Downloads/squashfs-root/lib/x86_64-linux-gnu/libselinux.so.1: no version information available (required by sed)
./AppRun: 10: exec: /usr/share/void/void: not found

@mrdev023
Copy link

Same error on Void-1.99.30001.glibc2.29-x86_64.AppImage

@RedKage
Copy link

RedKage commented May 3, 2025

Same with Void-1.99.30003.glibc2.29-x86_64.AppImage

/tmp/.mount_Void-17RwcCx/AppRun: line 10: /usr/share/void/void: No such file or directory

I'm on arch

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

No branches or pull requests

5 participants