This guide is for troubleshootin application on Linux platforms.
-
Since AppImage requires FUSE to work properly, you might see
dlopen(): error loading libfuse.so.2
where some distributions does not come withFUSE
library by default. For Ubuntu, Debian and their derivatives, here is the solution to make it works smoothly.-
Ubuntu (pre-22.04), Debian and their derivatives
Be sure to check
fuse3
does not exist. Manually installfuse2
by using the following commandsudo apt-get install fuse libfuse2
-
Ubuntu (>=22.04), Debian and their derivatives
This is only valid with distributions having
fuse3
. Manually installfuse2
by using the following commandsudo apt install libfuse2
NOTE: Do not by any chance remove or purge
fuse3
library which comes with the system. Many immportant packages depends on it, so you may end up completely crash your system.
For more information, check the following references:
- Troubleshooting with AppImage: https://docs.appimage.org/user-guide/troubleshooting/fuse.html
-