From 2763a5f7b732eafd4d4a5c98c1838cc8c25d8402 Mon Sep 17 00:00:00 2001 From: ISU Date: Wed, 26 Sep 2018 16:47:04 +0300 Subject: [PATCH] xbps: add page (#2211) --- pages/linux/xbps.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pages/linux/xbps.md diff --git a/pages/linux/xbps.md b/pages/linux/xbps.md new file mode 100644 index 000000000..56478d7c8 --- /dev/null +++ b/pages/linux/xbps.md @@ -0,0 +1,23 @@ +# xbps + +> The X Binary Package System (or xbps) is the binary package system used by Void Linux. + +- Install packages and synchronize them with the remote repository: + +`xbps-install --synchronize {{package_name1}} {{package_name2}}` + +- Search for a package in the remote repository: + +`xbps-query --repository -s {{package_name}}` + +- Remove a package, leaving all of its dependencies installed: + +`xbps-remove {{package_name}}` + +- Remove a package and all of its dependencies recursively that are not required by other packages: + +`xbps-remove --recursive {{package_name}}` + +- Synchronize your repository databases and update your system and dependencies: + +`xbps-install --synchronize -u`