mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-30 00:41:26 +00:00
27 lines
545 B
Plaintext
27 lines
545 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# xbps-remove
|
|
|
|
> XBPS utility to remove packages.
|
|
> See also: `xbps`.
|
|
> More information: <https://manned.org/xbps-remove.1>.
|
|
|
|
- Remove a package:
|
|
|
|
`xbps-remove {{package}}`
|
|
|
|
- Remove a package and its dependencies:
|
|
|
|
`xbps-remove --recursive {{package}}`
|
|
|
|
- Remove orphan packages (installed as dependencies but no longer required by any package):
|
|
|
|
`xbps-remove --remove-orphans`
|
|
|
|
- Remove obsolete packages from the cache:
|
|
|
|
`xbps-remove --clean-cache`
|