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
82
votes
2 answers

How do I uninstall a program installed with the Appimage Launcher?

So basically I installed a program with AppImage in Linux Elementary OS Loki, but now I have no idea how to uninstall it, and I didn't find anything in the documentation of AppImage.
Iago Dahlem
  • 2,659
  • 3
  • 12
  • 12
6
votes
2 answers

Using JPackage to make an AppImage

I'm trying to create an AppImage using JPackage (On a Ubuntu 18.04 System using OpenJDK 14) All the examples I find are of the form jpackage --type app-image --name myappimage --input target --main-jar myuberjar.jar --main-class myapplication.core…
kxygk
  • 148
  • 1
  • 10
3
votes
0 answers

Hosting static files with Python Fastapi inside an Appimage

I have two projects: one of them is a Python Project with Fastapi and another one is a React project. I've packaged my Python application into an Appimage, by creating a single binary for it (with pyinstaller) and then packaging it as an Appimage.…
Computergy
  • 65
  • 1
  • 6
3
votes
1 answer

Add resources in appimage

I am trying to create AppImage for a C++ application. I have few resources that I have to bundle, like shader files and fonts and images used in the application. They are put into a 'resources' folder. I am using appimage-builder to generate the…
3
votes
2 answers

Is there a way to build snap or a linux app without using snapcraft?

I'm using flutter dev and I wanted to enable linux support to many applications and followed this tutorial but the thing is Everytime I try to run snapcraft launches a VM and installs flutter again from the snap this uses lot of my disk space,time…
sonu ishaq
  • 101
  • 14
3
votes
1 answer

How do I build and install an electron app for raspbian using appimage

I am working on creating an electron appimage for my raspberry pi 4 to use in my car. I want to be able to use auto-updates from electron-builder so that I wont have to take apart the R-PI every time I want to update it. I have come across many…
bocodes
  • 387
  • 1
  • 4
  • 12
2
votes
0 answers

i want run appimage created on ubuntu 20.04 on ubuntu 22.04

I want to run appimage created on Ubuntu 20.04 on Ubuntu 22.04. I have the following problem: Inconsistency detected by ld.so: dl-call-libc-early-init.c: 37: _dl_call_libc_early_init: Assertion `sym != NULL' failed! I would be grateful if you guided…
hossein
  • 21
  • 1
2
votes
0 answers

Qt::FramelessWindowHint is invalid if packaged with AppImage

I want to build a window that no frame, so I use that code: setWindowFlags(Qt::FramelessWindowHint | windowFlags()); it's work, but when I build with AppImage, it becomes invalid。 The complete constructor looks like this: GWidget::GWidget(QWidget…
Maicss
  • 21
  • 3
2
votes
1 answer

FUSE problem launching app in linux with java

Hi i'm tring to launch software from java in linux, but i recive this error for 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…
2
votes
1 answer

Unable to properly disown AppImage

Been tinkering tonight but am unable to find a solution. I've written a small script that I call with a "popup-shell" and that uses fzf to select a file. I pass this file to marktext appimage and disown the process, after which the "popup-shell"…
Yaogen
  • 23
  • 3
2
votes
1 answer

Portable version of KDE's Dolphin file manager

Is there a portable version of KDE's Dolphin file manager, i.e. a version that can be stored on a USB stick, for example, and run on arbitrary Linux operating systems? So far the only thing I could find was a 3-year-old AppImage in a non-official…
xpages-noob
  • 1,569
  • 1
  • 10
  • 37
2
votes
2 answers

Electron .AppImage distribution app cannot be opened, when downloaded from the web site

I have an Electron app, which I have to publish, and I am having issues with the Linux distribution version. For Linux, I've decided to build an .AppImage distribution file and the problem is that the built AppImage launches successfully on the host…
Eugen-Andrei Coliban
  • 1,060
  • 2
  • 12
  • 40
2
votes
1 answer

How to make AppDir files available to an AppImage application?

My build system, which uses meson, puts some files my application needs on AppDir under AppDir/usr/share/myapp/resources. The application needs both, read and write to those files when it is running. The files are in AppDir when I look at it, but…
g_l
  • 621
  • 5
  • 15
2
votes
2 answers

creating appimage using source code and linuxdeployqt

i trying to create a appimage for my Linux system. Using qt-creator i have completed the programing and ran the app successfully . but when i am trying to make it appimage using linuxdeployQt i am facing some errors linuxdeployqt 5 (commit 37631e5),…
Bgg
  • 21
  • 3
2
votes
2 answers

Launch a bundled external script when exporting to AppImage

I have made my own application with electron, and I encounter an issue with production builds, when it comes to launching an external python script. When I run the code in the dev environment, I have something like: const out =…
yhu420
  • 436
  • 6
  • 18
1
2 3 4 5 6