From d3203a16998e978b306a310c55f27a71b9922a6b Mon Sep 17 00:00:00 2001 From: "K.B.Dharun Krishna" Date: Wed, 9 Nov 2022 15:51:01 +0530 Subject: [PATCH] apx: add page (#9501) --- pages/linux/apx.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 pages/linux/apx.md diff --git a/pages/linux/apx.md b/pages/linux/apx.md new file mode 100644 index 0000000000..9475e4e697 --- /dev/null +++ b/pages/linux/apx.md @@ -0,0 +1,33 @@ +# apx + +> Package management utility for Vanilla OS. +> Install packages inside managed containers or directly inside the host. +> More information: . + +- Install a package in the system and initialize the container: + +`sudo apx install --sys {{package}} && apx init` + +- Install package(s) in the system or install AUR package(s) inside a container: + +`sudo apx install --{{sys|aur}} {{package1 package2 ...}}` + +- Run an installed package from AUR: + +`apx --aur run {{package}}` + +- Update the list of available packages in the system: + +`sudo apx --sys update` + +- Upgrade all installed packages in the system to their newest available version: + +`sudo apx --sys upgrade` + +- Remove package(s) in the system or from the AUR container: + +`sudo apx --{{sys|aur}} remove {{package1 package2 ...}}` + +- Enter the container to install packages using `apt` (Use `exit` inside the container to exit it): + +`apx enter`