2022-06-16 18:30:04 +01:00
|
|
|
---
|
2024-06-16 18:30:03 +01:00
|
|
|
tags:
|
|
|
|
- Linux
|
|
|
|
- procedural
|
|
|
|
- arch-linux
|
2022-06-16 18:30:04 +01:00
|
|
|
---
|
|
|
|
|
|
|
|
# Pacman
|
|
|
|
|
|
|
|
## List all installed packages
|
2022-09-06 13:26:44 +01:00
|
|
|
|
2022-06-16 18:30:04 +01:00
|
|
|
```
|
|
|
|
pacman -Qe
|
|
|
|
```
|
|
|
|
|
2024-11-17 15:37:31 +00:00
|
|
|
## List all packages installed for current user
|
2024-03-28 13:40:04 +00:00
|
|
|
|
|
|
|
```
|
|
|
|
pacman -Qqe
|
|
|
|
```
|
|
|
|
|
2022-07-04 19:30:04 +01:00
|
|
|
## Uninstall, and list dependencies for package to be uninstalled
|
2022-06-16 18:30:04 +01:00
|
|
|
|
|
|
|
```
|
|
|
|
pacman -Rcns
|
2022-09-06 13:26:44 +01:00
|
|
|
```
|