Linux Installation Instructions
AppImage
layout: post title: AppImage 是什么?以及如何在ubuntu下面安装与使用? subtitle: Composing Methods
tags: [ linux]
Linux Installation Instructions
AppImage
chmod +x appName.AppImage
./appName.AppImage
- Now you can execute app.
Installation
You cannot really install an AppImage. It’s a file which can run directly after getting executable permission. To integrate it into desktop environment, you can either create desktop entry manually or use AppImageLauncher.
Desktop file creation
See [how to create desktop file in ubuntu ].https://www.maketecheasier.com/create-desktop-file-linux/
AppImageLauncher integration
You can integrate the AppImage into the system via AppImageLauncher. It will handle the desktop entry automatically.
Uninstallation
- Delete AppImage file.
- Delete your desktop file if exists.
- Delete your user settings:
~/.config/appName
Custom launch script
-
Save AppImage somewhere. Let’s say
~/bin/appname.AppImage
-
chmod +x ~/bin/appname.AppImage
-
Create a launch script:
#!/bin/bash DESKTOPINTEGRATION=0 ~/bin/appname.AppImage