2

I ran so many of these options and not a single one helped. I just can't seem to be able to run AppImages on Ubuntu 20.04 on my Raspberry Pi 4 8 GB. Specifically, I want to run AppImages from Trezor wallet and Ledger wallet, but I even tried some random AppImages from appimage.org.

Nothing happens if I run the AppImages; sometimes they would just give me an error. It's like my Ubuntu just doesn't have the filesystem to be able to run AppImages.

I don't know what app I need to install at this point to get AppImages to run. I even went to the official AppImage website (appimage.org) and all I could find there was these commands which do not work:

chmod a+x exampleName.AppImage
./exampleName.AppImage
Pabs
  • 21

3 Answers3

0

Try the following way in a terminal:

./exampleName.AppImage --disable-gpu --no-sandbox 

where exampleName.AppImage is the name of the AppImage app you want to run.

Most of the time problems with AppImages are GPU's fault. Also, after installing Ubuntu 22.04, almost all my AppImages are crashing without this command.

AlexPixel
  • 637
0

AppImage requires the fuse3 package, which may not be installed by default. Install it and retry.

fitojb
  • 2,233
-2

Presuming you downloaded the image to ~/Downloads, then open your Terminal, and do this:

cd ~/Downloads
sudo chmod 750 ./example.appimage
./example.appimage

Make sure you are in the correct working directory and try sudo in case you lack permissions to the directory for some odd reason. Other than that, should work fine.

oemb1905
  • 356