"AM" (ie "Application Manager") is a bash script able to install, update and remove thousands of standalone programs (any AppImage package, but also the official versions of Firefox, Thunderbird, Brave, Blender and hundreds of other programs provided on their official sites).
"AM" applies system-wide programs integration (for all users), i.e. installs programs in the /opt
directory (see Linux Standard Base), the launchers instead are installed in /usr/share/applications
with the "AM-" suffix and the links are placed in /usr/local/bin
or /usr/local/games
.
Being "AM" a bash-based script, it can be used on all the architectures supported by the Linux kernel and works with all the GNU/Linux distributions.
This repository contains "AM" and the full database of the installation scripts for the applications.
To see the whole catalog of the apps available, visit portable-linux-apps.github.io
For a version of "AM" that works locally and installs/removes the same programs without root privileges, see AppMan or use the inbuilt option --user
(jump to "Use AM locally like AppMan does").
- Differences between "AM" and "AppMan"
- Use AM locally like AppMan does
- What programs can be installed
- How to update all programs, for real
- Repository and Multiarchitecture
- Comparison with other AppImage managers
- How to enable bash completion
- Snapshots: backup your app and restore to a previous version
- Install/update/remove programs without "AM"
- Rollback
- An application does not work, is old and unsupported
- Cannot download or update an application
- Cannot mount and run AppImages
- Missing dependences
- Spyware, malware and dangerous software
- Wrong download link
AM is an application manager for AppImages and other standalone programs for GNU/Linux with multi-architecture support. The "am" command is very easy to use and can manage a better control of automatic updates for all the programs installed.
The main goal of this tool is to provide the same updated applications to multiple GNU/Linux distributions without having to change the package manager or the distro itself. This means that whatever distro you use, you will not miss your favorite programs or the need for a more updated version.
"AM" also aims to be a merger for GNU/Linux distributions, using not just AppImage as the main package format, but also other standalone programs, so without having to risk breaking anything on your system: no daemons, no shared libraries. Just your program!
AM-4.3.2.mp4
"AM" and "AppMan" are two command line tools that can download, install, update, remove and save AppImage and other standalone applications trying to always get the original versions from the main sources, and where necessary, try to create AppImage using pkg2appimage and appimagetool. Since March 2022 "AM" provides its source code as the base for the newer releases of AppMan, making it a version of "AM" that allows you to install programs locally instead.
Where $PROGRAM
is the application we're going to install:
-
"AM" (ie the
am
command, provided by this main repository) installs programs and works at system level (i.e. for all the users). "AM" requires thesudo
privileges but only to install and remove the app, all the other commands can be executed as a normal user. This allows multiple users of the same system to be able to use the same installed applications. This is what an installation script installs with "AM":/opt/$PROGRAM/ /opt/$PROGRAM/$PROGRAM /opt/$PROGRAM/AM-updater /opt/$PROGRAM/remove /opt/$PROGRAM/icons/$ICON-NAME /usr/local/bin/$PROGRAM /usr/share/applications/AM-$PROGRAM.desktop
-
"AppMan" (ie the
appman
command, available at github.com/ivan-hc/AppMan) instead does not need root privileges to work, it allows you to choose where to install your applications into your$HOME
directory. AppMan is also usable as a portable app (i.e. you can download and place it wherever you want) and it is able to update itself, anywhere! At first start it will ask you where to install the apps and it will create the directory for you (the configuration file is in~/.config/appman
). For example, suppose you want install everything in "Applicazioni" (the italian of "applications"), this is the structure of what an installation scripts installs with "AppMan" instead:~/Applicazioni/$PROGRAM/ ~/Applicazioni/$PROGRAM/$PROGRAM ~/Applicazioni/$PROGRAM/AM-updater ~/Applicazioni/$PROGRAM/remove ~/Applicazioni/$PROGRAM/icons/$ICON-NAME ~/.local/bin/$PROGRAM ~/.local/share/applications/AM-$PROGRAM.desktop
For everything else, the controls and operation are always the same for both command line tools. The only thing that changes is that the installation scripts are written only for "AM", while "AppMan" uses the same scripts and includes commands that can modify them to make them work locally during the installation process.
More details about AppMan on the official repository, at https://github.com/ivan-hc/AppMan
Since version 4.3.3-1 the new --user
option allows you to create an alias to install and manage apps in your $HOME folder. When executing the am --user
command you will be suggested an alias to use temporarily or if you want you can add it in your ~/.bashrc to make it permanent. "AppMan" will be used while still using the usual am
command.
This is a minor update for those who want to use the am
command to install applications locally and who were not aware of AppMan, the AM clone.
The new option does not immediately enable "AppMan Mode", instead it will show you an alias to use temporarily in the current session or to add to your ~/.bashrc to make it permanent:
alias am=/opt/am/appman
AppMan is downloaded to the AM's installation folder, but without affecting the existing installation.
AM installs/removes/updates/manages only standalone programs, ie those programs that can be run from a single directory in which they are contained (where $PROGRAM
is the name of the application, AM installs them always into a dedicated folder named /opt/$PROGRAM
).
These programs are taken:
- from official sources (see Firefox, Thunderbird, Blender, NodeJS, Chromium Latest...);
- from official .deb packages (see Brave, Vivaldi, Google Chrome...);
- from the repositories and official sites of individual developers (if an archive is not available, an official AppImage is used, see Libreoffice, OnlyOffice);
- from tar archives of other GNU/Linux distributions (see Chromium, Chromium Ungoogled...);
- from AUR or other Arch Linux-related sources (see Palemoon, Spotify, WhatsApp...);
- from AppImage recipes to be compiled with pkg2appimage and appimagetool (see Anydesk, qBittorrent, Dropbox, all the games from the "KDE Games" suite...);
- from unofficial repositories of developers external to the project concerned (most of the time they are programs in AppImage format), but only if an official release is not available (see the various WINE, Zoom, VLC, GIMP...).
"AM" can even create Firefox profiles to run as webapps (as an alternative to the countless Electron-based apps/AppImages)!
You can consult basic information, links to sites and sources used through the related am -a $PROGRAM
command or by connecting to https://portable-linux-apps.github.io
To update all the programs, just run the command (without sudo
):
am -u
To update just one program:
am -u $PROGRAM
Here are the ways in which the updates will be made:
- Updateable AppImages can rely on an appimageupdatetool-based "updater" or on their external zsync file (if provided by the developer);
- Non-updateable AppImages and other standalone programs will be replaced only with a more recent version if available, this will be taken by comparing the installed version with the one available on the source (using "curl", "grep" and "cat"), the same is for some AppImages created with pkg2appimage and appimagetool;
- Fixed versions will be listed with their build number (e.g. $PROGRAM-1.1.1). Note that most of the programs are updateable, so fixed versions will only be added upon request (or if it is really difficult to find a right wget/curl command to download the latest version).
During the first installation, the main user ($currentuser) will take the necessary permissions on each /opt/$PROGRAM directory, in this way all updates will be automatic and without root permissions.
In this video I'll show you how to test an update on "Avidemux" (I use my custom AppImage I have built from "deb-multimedia", for my use case, but don't worry, the official Avidemux AppImage is also available on this repository). Firefox, on the other hand, is not affected by this management, as it can be updated automatically:
AM-update-test.mp4
Each program is installed through a dedicated script, and all these scripts are listed in the "repository" and divided by architecture. NOTE that currently my work focuses on applications for x86_64 architecture, but it is possible to extend "AM" to all other available architectures.
Click on the link of your architecture to see the list of all the apps available on this repository:
If you are interested, you can deliberately join this project.
- There are many other AppImage managers around, and almost all of them support their database on appimagehub or other official AppImage resources, but the big problem is at the base of the compilation of these packages, being very often without an integrated update system. Furthermore, AppImage is a format that many developers are abandoning in favor of Flatpak, also because there were no centralized repositories or software that managed its updates in a universal way... at least until the invention of the first draft of AppMan, and therefore of its successor, "AM";
- With "AM" each installed program has its own script (AM-updater) that compares the installed version with the one available in the sources or uses official tools to update the AppImages (see above), there is support for multiple architectures (including i686 and aarch64) and anyone can create a script to install that particular program (if available for its architecture).
NOTE: "AM" consider AppImage not to be a priority format, but only a fallback, because if a program is already made available in a bundle by the main developer, "AM" will prefer it. Some examples are given by Firefox, Thunderbird, NodeJS, Blender, Chromium Latest, SuperTuxKart... they are all programs provided in bundle, no other kind of package manager is really needed for them.
A warning message will prevent you from using "AM" if the following packages are not installed on your system:
binutils
andcoreutils
, contain core programs for GNU/Linuxcurl
andwget
, needed to check URLs and download filesgrep
andsed
, to check lists and edit/adapt filessudo
(see "For non-sudo users", i.e. the next paragraph)tar
andunzip
, to extract various storage formatszsync
, about 10% of AppImages depend on this to be updated
"AM" requires sudo
installed on your system by default, if for some reason you need to use commands like doas
or whatever, just use "AppMan" instead.
App launchers (files with the .desktop extension) are installed in /usr/share/applications by default with the suffix "AM-". If your distribution is immutable, you may not have privileges to write to /usr/share. Use the --user
option to "AM" and add the suggested alias in your ~/.bashrc file to use AppMan but using the am
command (go back to "Use AM locally like AppMan does", after the introduction).
To install "AM" quickly, just copy/paste the following command:
wget https://raw.githubusercontent.com/ivan-hc/AM-application-manager/main/INSTALL && chmod a+x ./INSTALL && sudo ./INSTALL
Or use "GIT":
git clone https://github.com/ivan-hc/AM-application-manager.git
cd AM-application-manager
chmod a+x INSTALL
sudo ./INSTALL
In both cases, the "INSTALL" script will create a dedicated /opt/am directory containing the "APP-MANAGER" script (ie "AM" itself), a symlink for it in /usr/local/bin named am
and the /opt/am/remove script needed to uninstall "AM" itself, if needed. A temporary folder named /opt/am/.cache will be created too, in wich each installation script or list of available applications (for your architecture) is downloaded.
am {OPTION}
am {OPTION} {PROGRAM}
###########################################################################
OPTIONS
(standard, for both "AM" and "APPMAN")
-a
, about
SYNOPSIS:
-a {PROGRAM}
DESCRIPTION: Shows more info about one or more apps, all the pages are downloaded from https://portable-linux-apps.github.io
-b
, backup
SYNOPSIS:
-b {PROGRAM}
DESCRIPTION: Save the current version of one or more apps, each snapshot is stored into a dedicated directory, under $HOME/.am-snapshots/$PROGRAM
To restore the snapshots see the "-o" option.
-c
, clean
SYNOPSIS:
-c
DESCRIPTION: Removes all the unnecessary files and folders.
-d
, download
SYNOPSIS:
-d {PROGRAM}
DESCRIPTION: Download one or more installation scripts to your desktop.
-f
, files
SYNOPSIS:
-f
DESCRIPTION: Shows the list of all installed programs, with sizes.
-h
, help
SYNOPSIS:
-h
DESCRIPTION: Prints this message.
-H
, --home
SYNOPSIS:
-H {PROGRAM}
DESCRIPTION: Set a dedicated $HOME directory for one or more AppImages.
-i
, install
SYNOPSIS:
-i {PROGRAM}
DESCRIPTION: Install one or more programs.
-l
, list
SYNOPSIS:
-l
DESCRIPTION: Shows the list of all the apps available in the repository.
-o
, overwrite
SYNOPSIS:
-o {PROGRAM}
DESCRIPTION: Overwrite the existing version of the app with a snapshot saved previously (see the option "-b", above).
-q
, query
SYNOPSIS:
-q {KEYWORD}
DESCRIPTION: Can be used to search for keywords and terms in the list of available applications packages to display matches. This can be useful if you are looking for applications having a specific feature.
-r
, remove
SYNOPSIS:
-r {PROGRAM}
DESCRIPTION: Removes one or more apps, requires confirmation.
-R
SYNOPSIS:
-R {PROGRAM}
DESCRIPTION: Removes one or more apps without asking.
-s
, sync
SYNOPSIS:
-s
DESCRIPTION: Updates this script to the latest version hosted.
-t
, template
SYNOPSIS:
-t {PROGRAM}
DESCRIPTION: This option allows you to generate a custom script from a list of different templates that may be vary according to the kind of app you want to upload to the "AM" repo, and the source where it is available.
-u
, -U
, update
SYNOPSIS:
-u
-u {PROGRAM}
DESCRIPTION: Update all the apps or just one.
-v
, version
SYNOPSIS:
-v
DESCRIPTION: Shows the version.
-w
, web
SYNOPSIS:
-w
DESCRIPTION: Shows the URLs of the sites/sources of then app.
--disable-completion
SYNOPSIS:
--disable-completion
DESCRIPTION: Disable bash-completion.
--enable-completion
SYNOPSIS:
--enable-completion
DESCRIPTION: Enable bash-completion to complete a keyword with the "TAB" key, using the names of all installable applications available.
--rollback
SYNOPSIS:
--rollback {PROGRAM}
DESCRIPTION: Download an older or specific version of the software you are interested in (only works with Github).
--user
, appman
SYNOPSIS:
--user
DESCRIPTION: Run "AM" as an unprivileged user making it act as "AppMan".
lock
SYNOPSIS:
lock {PROGRAM}
DESCRIPTION: Lock the selected app to the current version installed, this only works if exists a dedicated "AM-updater" installed with the app.
unlock
SYNOPSIS:
unlock {PROGRAM}
DESCRIPTION: Unlock updates for the selected program. This option nulls the option "lock" (see above).
EXTRA OPTIONS (only available for "APPMAN")
conv
, convert
SYNOPSIS:
conv {PROGRAM}
DESCRIPTION: Download the installation scripts for "AM" and converts them to rootless installation scripts that can be installed locally.
Since 2.3.1 release "AM" has its inbuilt bash completion script that can be enabled using the following command:
am --enable-completion
This will ceate a bash completion script in /etc/bash_completion.d named am-completion.sh
needed to complete a keyword with the TAB key using the names of all the main options and the name of the scripts of all the applications available in the "AM" repository.
To disable bash completion (and to remove the /etc/bash_completion.d/am-completion.sh script):
am --disable-completion
Here you are a video on how to disable/enable bash completion in "AM":
Enable.or.Disable.BASH.completion.in.AM.mp4
A more detailed guide on how to create your own bash completion script for your project is available here.
Since 2.6.1 release, "AM" supports snapshots of all installed applications. A selected program can be copied locally into your home folder.
Here you are a video on how to backup/restore works in "AM":
backup-restore-applications-using-.am.mp4
-
option
-b
orbackup
creates the snapshot, usage:am -b $PROGRAM
-
option
-o
oroverwrite
allows you to roll back to a previous version of the program. Usage:am -o $PROGRAM
All the snapshots are stored into an hidden /home/$USER/.am-snapshots
folder containing other subfolders, each one has the name of the programs you've done a backup before. Each snapshot is named with the date and time you have done the backup. To restore the application to a previous version, copy/paste the name of the snapshot when the -o
option will prompt it.
"AM" focuses a lot on the autonomy of its programs, so much that you can install, update and remove them without necessarily having "AM" installed on your system.
-
To install a program without "am", replace "SAMPLE" at the line 2 with the name of the program you want to install:
ARCH=$(uname -m) PROGRAM=SAMPLE wget https://raw.githubusercontent.com/ivan-hc/AM-application-manager/main/programs/$ARCH/$PROGRAM chmod a+x ./$PROGRAM sudo ./$PROGRAM
-
To update a program without "am" instead, just run:
/opt/$PROGRAM/AM-updater
Note that this works only if the program has a /opt/$PROGRAM/AM-updater script, other programs like Firefox and Thunderbird are auto-updatable.
-
To uninstall a program without "am":
sudo /opt/$PROGRAM/remove
"AM" has a -t
option (or template
) with which you can get a script to customize according to your needs. With this option, you can quickly create scripts to download existing programs or even create AppImage or AppDir through tools such as appimagetool and pkg2appimage.
The following video shows how to create and test an AppImage of "Abiword" from Debian Unstable repository with a custom AppRun (option 5):
Create.and.test.your.own.AppImage.in.AM.mp4
The currently available templates are stored here, more will be added with the next versions of "AM".
A wiki is also available, here I will try to explain the installation script's workflow for a program to be better managed by "AM", trying to use a language that is as simple and elementary as possible.
Each script is written exclusively for "AM" (and is structured in such a way that even "AppMan", the non-root version of "AM", can modify it to manage programs locally).
We can divide the stages of an installation's process as follows:
- Step 1: create the main directory in /opt, as already suggested by the Linux Standard Base (LSB);
- Step 2: create the "remove" script, needed to uninstall averything (this must be the first one to be created, in order to quickly resolve any aborted/brocken installations using the
-r
option); - Step 3: download the program and/or compile the program (this operation varies depending on how the program is distributed);
- Step 4: link to a $PATH (usually
/usr/local/bin
, but also/usr/bin
,/usr/games
or/usr/local/games
); - Step 5: the "AM updater" script, which is a kind of "copy" of step "3" (see above) that may include options to recognize newer versions of the program. NOTE that if you intend to create a script for the fixed version of a program, you can also skip this step;
- Step 6: launchers and icons. Note that if you intend to create a script for a command line utility, you can also skip this step;
- Step 7: change the permissions in the program folder, so you can use the update function (step 5) without using "sudo" privileges
- Step 8 (optional): your signature
The most difficult step to overcome is certainly the number "3", given the great variety of methods in which authors distribute their software, while all the other steps are much easier to overcome.
To uninstall "AM" just run the command:
am -r am
From version 4.4 it is possible to directly select from a list of URLs the version of the app that interests you most from the main source. Use the --rollback
option in this mode:
am --rollback ${PROGRAM}
This only works with the apps hosted on Github.
Use the -a
option and go to the developer's site to report the problem. The task of "AM" is solely to install / remove / update the applications managed by it. Problems related to the failure of an installed program or any related bugs are attributable solely to its developers.
There can be many reasons:
- check your internet connection;
- if the app is hosted on github.com, you have probably exceeded the hourly limit of API calls;
- the referring link may have been changed, try the
--rollback
option; - the reference site has changed, report any changes at https://github.com/ivan-hc/AM-Application-Manager/issues
See https://docs.appimage.org/user-guide/troubleshooting/fuse.html
See "Requirements"
Before installing any application, try to know where it comes from first. This program provides you with two basic options for this purpose:
- Option
-a
orabout
(medium safety), allows you to read a short description and know the links from the pages of the site https://portable-linux-apps.github.io locally, however these links may be inaccurate due to continuous updates of the initial scripts (you can provide additional info yourself by modifying the pages of the site, here, it is also open source); - Option
-d
ordownload
(absolute safety), this allows you to get the installation script directly on your desktop, so you can read the mechanisms and how it performs the downloads from the sources (in most cases there is a header for each step that explains what the listed commands do).
“AM” and AppMan are just tools to easily install all listed programs, but what you choose to install is your complete responsibility. Use at your own risk!
The reasons may be two:
- the referring link may have been changed, try the
--rollback
option; - the reference site has changed, report any changes at https://github.com/ivan-hc/AM-Application-Manager/issues
- AppMan, a clone of "AM" that works in the user's $HOME instead;
- AppImaGen, a script that generates AppImages from Debian or from a PPA for the previous Ubuntu LTS;
- ArchImage, build AppImage packages for all distributions but including Arch Linux packages. Powered by JuNest;
- Firefox for Linux scripts, easily install the official releases of Firefox for Linux.
Having encouraged you to visit this page is already a huge achievement for me, being this my second creation after AppMan. This project is much more demanding than AppMan, as each individual program requires a different script to check the version of the installed program and compare it to the source link, so each individual program can take hours of testing before being published in the repository, and between my real job and other family commitments, I try to carve up some free time for this project.
If you wish, you can support me, this work and my passion with a small donation, I will gladly appreciate it. Thank you.