eolas/neuron/c5a35693-1ea8-44ec-bdf5-53955699f359/Pacman.md

27 lines
274 B
Markdown
Raw Normal View History

2024-10-19 11:00:03 +01:00
---
tags:
- Linux
- procedural
- arch-linux
---
# Pacman
## List all installed packages
```
pacman -Qe
```
## List all packages installed by current user
```
pacman -Qqe
```
## Uninstall, and list dependencies for package to be uninstalled
```
pacman -Rcns
```