25 January 2021
1 min read

How to Install AppImage in Linux

AppImage is format for packaging applications which is self-contained. It is the universal software package format compatible with various Linux distribution. In the traditional system of installing software packages, you need to download, extract and install on various directories of the system. But with the AppImage there is no extractionno installationno root permission, you just download the single package, make it executable and run it with a single click. It includes all the compressed image, dependencies, and libraries needed to run the software. Even to uninstall the application, you will just remove the AppImage file.

How to Install AppImage

In this article, I am going to download the AppImage package (with .appimage extension) of a photo editing application Filmulator and show you the process involved. You can also download it from the official page of Filmulator. 

Now, you need to apply execute permission in the downloaded file. Go to your downloads and right-click on the file and click on ‘Properties’.

A window appears. Choose the ‘Permission’ tab and tick the box ‘Execute’ as shown in the below picture.

You can make executable from command line also,

$ chmod u+x Filmulator_v0.11.0.AppImage

That’s all. Run the application by double-clicking on it. You will see the Filmulator screen as shown below.

How to remove AppImage

To remove AppImage just delete the downloaded file. For example, in our case, we are going to delete Filmulator_v0.11.0.AppImage file.

$ sudo rm -f Filmulator_v0.11.0.AppImage

You can do it from the GUI desktop as well. Right-click on the download file and select ‘Move to trash’.

Conclusion

You can find a big lists of apps supporting AppImage format here.

We show you, what is AppImage and how to use it. It is so simple and easy to launch the application with it. Thank you for reading the article.

Bobbin Zachariah

Bobbin Zachariah

Bobbin Zachariah is the editor-in-chief of Linoxide and has an experienced team of Linux enthusiastic authors who makes this blog awesome. Linoxide is one of the top 20 Linux Blog by whizlabs.

Leave a Reply

Your email address will not be published.

Previous Story

How to Install GIMP on Ubuntu 18.04/20.04

Next Story

How to Enable Automatic Updates on Ubuntu 20.04

Latest from Blog

Top 8 Reasons to Use Garuda Linux

Have you been going back and forth between multiple Linux flavors in search of an exciting experience? Or perhaps you are coming from a Windows or MAC environment and want to try

How to Rename Multiple Files in Linux

In a Linux system, you can easily rename a file using mv command. But, if you have multiple files which you want to rename, in this situation you need some extra tools

How to Install TensorFlow on Ubuntu 20.04

Tensorflow is an open-source platform for machine learning and artificial intelligence. It is developed by the Google Brain team. It contains tools, libraries, and community resources for developers to build ML powered
Go toTop