3

I'm sometimes working on the command line (or in the Ranger file manager), and it's annoying to have to move to a graphical interface to double-click on a AppImage. It looks like Ranger tries xdg-open; I tried that on the command line, myself, and that fails. My permissions are correct, so how can I actually run an AppImage from the command line?

Yehuda
  • 207
  • 3
  • 17
  • Perhaps by including the complete path like this: `/path/to/file.AppImage` (without the initial dot). – Veles Jan 07 '21 at 20:33

1 Answers1

3

Making it executable chmod +x file and running it with ./file worked for me.

Veles
  • 115
  • 3