mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-31 01:41:42 +00:00
23 lines
566 B
Plaintext
23 lines
566 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# urpme
|
|
|
|
> Uninstall packages in Mageia.
|
|
> See also: `urpmi`, `urpmi.update`, `urpmi.addmedia`, `urpmi.removemedia`, `urpmf`, `urpmq`.
|
|
> More information: <https://wiki.mageia.org/en/URPMI#urpme>.
|
|
|
|
- Uninstall a package:
|
|
|
|
`sudo urpme {{package}}`
|
|
|
|
- Uninstall orphan packages (Note: use it with caution as it might unintentionally remove important packages):
|
|
|
|
`sudo urpme --auto-orphans`
|
|
|
|
- Uninstall a package and its dependencies:
|
|
|
|
`sudo urpme --auto-orphans {{package}}`
|