You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get a series of missing shared library errors when trying to run the AppImage out of the box:
$ ./Spacemesh-1.3.10.AppImage
dlopen(): error loading libfuse.so.2
AppImages require FUSE to run.
You might still be able to extract the contents of this AppImage if you run it with the --appimage-extract option.
See https://github.com/AppImage/AppImageKit/wiki/FUSE for more information
...
/tmp/.mount_Spacem3YX0UI/spacemesh_app: error while loading shared libraries: libnss3.so: cannot open shared object file: No such file or directory
...
/tmp/.mount_Spacem4sDSSC/spacemesh_app: error while loading shared libraries: libatk-1.0.so.0: cannot open shared object file: No such file or directory
...
/tmp/.mount_SpacemL7DtSd/spacemesh_app: error while loading shared libraries: libatk-bridge-2.0.so.0: cannot open shared object file: No such file or directory
...
/tmp/.mount_SpacemJsSwAt/spacemesh_app: error while loading shared libraries: libcups.so.2: cannot open shared object file: No such file or directory
...
/tmp/.mount_SpacemdVXTxW/spacemesh_app: error while loading shared libraries: libgtk-3.so.0: cannot open shared object file: No such file or directory
...
/tmp/.mount_Spacems2OdBK/spacemesh_app: error while loading shared libraries: libasound.so.2: cannot open shared object file: No such file or directory
Steps to reproduce
Run the AppImage on a fresh Ubuntu server install
Expected behavior
The AppImage should work out of the box, or at least the list of required packages should be clearly documented
Actual behavior
See above
How to fix
I worked around it by apt install ing the following packages: libfuse2 libnss3 libatk1.0-0 libatk-bridge2.0-0 libcups2 libgtk-3-0 libasound2
The text was updated successfully, but these errors were encountered:
Environment
Describe the bug
I get a series of missing shared library errors when trying to run the AppImage out of the box:
Steps to reproduce
Run the AppImage on a fresh Ubuntu server install
Expected behavior
The AppImage should work out of the box, or at least the list of required packages should be clearly documented
Actual behavior
See above
How to fix
I worked around it by
apt install
ing the following packages: libfuse2 libnss3 libatk1.0-0 libatk-bridge2.0-0 libcups2 libgtk-3-0 libasound2The text was updated successfully, but these errors were encountered: