2022-06-16 18:30:04 +01:00
|
|
|
---
|
2023-02-10 18:22:04 +00:00
|
|
|
tags: []
|
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-03-28 13:40:04 +00:00
|
|
|
## List all packages installed by current user
|
|
|
|
|
|
|
|
```
|
|
|
|
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
|
|
|
```
|