LinuxCommandLibrary

apx

Package management utility for Vanilla OS.

TLDR

Initialize or reinitialize a specific container

$ apx init
copy


Install specific packages in the container
$ apx install [package1 package2 ...]
copy


Install a DEB/RPM package inside the container (Use --dnf flag for installing RPMs)
$ apx install --sideload [path/to/package]
copy


Remove specific packages from the container
$ apx remove [package1 package2 ...]
copy


Search for specific packages
$ apx search [package1 package2 ...]
copy


Enter the managed container shell to execute commands (type exit to exit the container)
$ apx enter
copy


Update the list of available packages in the container
$ apx update
copy


Upgrade all installed packages in the container to their newest available version
$ apx upgrade
copy

Copied to clipboard