AppImage's in Ubuntu
17 Jul 2021AppImages are basically self contained scripts that can be run without installation.
We first need to make it executable via chmod +x name.AppImage.
Then we can run it via ./name.AppImage.
Integrating with Ubuntu
It’s useful to integrate the AppImage into Ubuntu itself we can do this via the following steps:
- Move the
AppImageinto a directory in yourPATH(for me~/bin) - Create a new file in
~/.local/share/applicationswith called<name-of-software>.desktop - Fill in the file with the following details:
[Desktop Entry]
Name=$name
Exec=/home/yourhome/bin/$name.AppImage
Terminal=false
Type=Application
Categories=Development
- Done!
If you liked that post, consider following me on Bluesky to
hear when I post new articles.