I’m running a live image of Ubuntu 24.
I downloaded the official Trezor Suite AppImage and tried to run it. I got this error:
sudo ./Trezor-Suite-25.3.3-linux-x86_64.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
Searching online I found that I should install libfuse2
to run AppImage’s. So I did using:
sudo apt install libfuse2
I launched Trezor Suite again, which got me this error:
sudo ./Trezor-Suite-25.3.3-linux-x86_64.AppImage
[0405/150446.095893:FATAL:electron_main_delegate.cc(288)] Running as root without --no-sandbox is not supported. See https://crbug.com/638180.
Trace/breakpoint trap
So I added --no-sandbox
as stated in the error message, like this:
sudo ./Trezor-Suite-25.3.3-linux-x86_64.AppImage --no-sandbox
This launched Trezor Suite app, but all I got is this blank screen:
The terminal log print this info: sudo ./Trezor-Suite-25.3.3-linux-x86_64.AppImage --no-sandbox[17027:0405/16000 - Pastebin.com
Can anyone help me fix this?