I'm currently running Alpine Linux with XFCE. When I try to run an executable, in this case the "Tox" app .appimage file, like this
./qTox-v1.16.3.x86_64.AppImage
It returns this error
bash: ./qTox-v1.16.3.x86_64.AppImage: No such file or directory
despite the fact that the file exists and is in the directory that I'm in. What is going on here?
file qTox-v1.16.3.x86_64.AppImage
andls -ld qTox-v1.16.3.x86_64.AppImage
tell you? – Chris Davies Nov 03 '19 at 12:40readelf -a qTox-v1.16.3.x86_64.AppImage | grep interpreter
. If I'm not mistaken, Alpine Linux is based on the musl library (where the C library is the interpreter), and that program is probably linked against glibc (the GNU C library). I have no idea how that could work, other than installing glibc with its entire suite (including its dynamic linker / interpreter) one way or another. But I haven't any Alpine Linux to try on. – Nov 12 '19 at 23:20