1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/xbps.md

33 lines
924 B
Markdown
Raw Normal View History

2018-09-26 16:47:04 +03:00
# xbps
> The X Binary Package System (or xbps) is the binary package system used by Void Linux.
2020-03-28 01:27:33 +00:00
> More information: <https://github.com/void-linux/xbps>.
2018-09-26 16:47:04 +03:00
- Install packages and synchronize them with the remote repository:
`xbps-install --sync {{package_name1}} {{package_name2}}`
2018-09-26 16:47:04 +03:00
- 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 --sync --update`
2020-03-28 01:27:33 +00:00
- Remove packages that were installed as dependencies and aren't currently needed:
`xbps-remove --remove-orphans`
- Remove obsolete packages from the cache:
`xbps-remove --clean-cache`