Questions tagged [appimage]

AppImage is a software tool that helps creating standalone application under Linux.

The key idea of the AppImage format is one app = one file. Every AppImage contains an app and all the files the app needs to run. In other words, each AppImage has no dependencies other than what is included in the targeted base operating system(s).

Using AppImageKit you can package desktop applications as AppImages that run on common Linux-based operating systems, such as RHEL, CentOS, Ubuntu, Fedora, Debian and derivatives.

The AppImage format is a format for packaging applications in a way that allows them to run on a variety of different target systems (base operating systems, distributions) without further modification.

AppImageKit is a concrete implementation of the AppImage format and provides tools for conveniently handling AppImages.

88 questions
1
vote
1 answer

How to package shell programs into an AppImage?

I have made an AppImage via: linuxdeploy --appdir AppDir --icon-file icon.png --desktop-file desktop.desktop --executable myExecutable --output appimage which runs fine. However, the program I've packaged (myExecutable) makes shell calls (say to…
George
  • 6,927
  • 4
  • 34
  • 67
1
vote
1 answer

User-friendly execution of downloaded file in Linux

On my website I need to give users an ability to download and easily start my executable (AppImage binary) on Linux. For Windows version it is just .exe which works after downloading and clicking: Download file Click on file in browser downloads…
Reni
  • 58
  • 4
1
vote
1 answer

Electron Linux: .AppImage is not showing the icon, while .deb is

I have an Electron app which I want to distribute to all operating systems. I have an issue with the Linux release file. I've tested both the .deb file and the .AppImage file. The problem is the icon: while if I run my app on Ubuntu using .deb file…
Francesco Borzi
  • 56,083
  • 47
  • 179
  • 252
1
vote
2 answers

How do I redirect from a built-in bin to execute an AppImage instead?

Scenario: the current version of Kate in Ubuntu 18LTS points at their customized version (which doesn't appear to support regex search capability). The bin is: /usr/bin/kate. Desired solution: run the Kate AppImage (which has the regex…
Jay Marm
  • 556
  • 5
  • 12
1
vote
1 answer

softlink to binary always use home folder path (instead of current folder)

kdevelop provides this AppImage binary: wget -O KDevelop.AppImage https://download.kde.org/stable/kdevelop/5.1.1/bin/linux/KDevelop-5.1.1-x86_64.AppImage chmod +x KDevelop.AppImage ./KDevelop.AppImage It works well. So I want to make a soft link…
artm
  • 17,291
  • 6
  • 38
  • 54
1
vote
1 answer

How to use appimage to deploy qt5 application

I'm using appimage http://appimage.org to pack my application in a standalone excutable. I'm doint this on debian testing lenny. My application uses a lot of opensource libraries (qt, python pythonqt fftw hdf4/5 gsl netpbm qwt) and everything was ok…
bibi
  • 3,671
  • 5
  • 34
  • 50
0
votes
0 answers

Create AppImage from GitGub workflow

What I want to do I have a python script named turnin.py and a requirements.txt file which you can find on GitHub What I want is that I want to create multiple packages(like .deb, .rpm and .AppImage) through workflows. The problem that I have I…
0
votes
1 answer

defaultServiceProvider::requestService(): no service found for - "org.qt-project.qt.mediaplayer"

I'm building my Qt app into an AppImage on Ubuntu-22.04. It builds without errors and the app works. But the problem is that it's supposed to display a video, and it doesn't. The initial version of the app successfully displays the video, but the…
Wasyn
  • 11
  • 3
0
votes
1 answer

How do I access resources in C when bundling into an AppImage?

I have a C program that I want to package into an AppImage file. I am attempting to use linuxdeploy and appimagetool to create the AppImage for my program. It has worked so far, but I do not know how to put resource files that are needed by my C…
Priff13
  • 29
  • 6
0
votes
1 answer

How to install an appimage file in linux fedora

I am new to Linux and I'm using the Fedora distro. I encountered a problem while trying to install an app. The app is in AppImage format, but when I try to run it, I receive an error message saying, "Could not display AppImage." I have tried…
Human
  • 1
0
votes
0 answers

How to create AppImage for a Zsh script, including it?

I would want to create AppImage for a script that has only one dependency – Zshell. I've found appimagetool but it doesn't give an easy answer of how to automatically bundle Zshell in the package. I've tried appimagetool n-commodore (n-commodore is…
psprint
  • 3
  • 2
0
votes
2 answers

How run AppImage with AppArmor

I have Archlinux with AppArmor and I get this error trying to run this AppImage (standard-notes-3.150.38-linux-x86_64.AppImage): $ Downloads/standard-notes-3.150.38-linux-x86_64.AppImage fuse: mount failed: Permission denied Cannot mount AppImage,…
oml
  • 115
  • 2
  • 8
0
votes
0 answers

AppImage cant find idea.sh

i get this error: /tmp/.mount_Intellqaatnb/AppRun: line 5: /home/johoski/Downloads/usr/bin/bin/idea.sh: No such file or directory even if int the apprun its like this: #!/bin/bash SELF=$(readlink - f "$0") HERE=${SELF%/*}…
0
votes
0 answers

Flutter external URL open fails for AppImage Ubuntu 22.10 - cannot open path of the current working directory

I've built: flutter build linux --release Flutter app on Ubuntu 22.10. When app is bundled as AppImage, the call to: # https://pub.dev/packages/url_launcher if (await canLaunchUrl(url)) { launchUrl(url); } fails with: cannot open path of the…
Tom Raganowicz
  • 2,169
  • 5
  • 27
  • 41
0
votes
0 answers

How to provide custom config for ImageMagick AppImage

Currently I am downloading the ImageMagick AppImage provided on the releases page to /usr/local/bin. (It needs to be accessible to multiple users.) I would like to provide a custom policy.xml config file but am not sure where to put it. The docs…
lewistg
  • 336
  • 4
  • 8