Last Sync: 2022-06-16 18:30:04
This commit is contained in:
parent
248fa30f88
commit
0733d76e29
2 changed files with 18 additions and 1 deletions
17
Linux/Procedural/Pacman.md
Normal file
17
Linux/Procedural/Pacman.md
Normal file
|
@ -0,0 +1,17 @@
|
|||
---
|
||||
tags:
|
||||
- Linux
|
||||
---
|
||||
|
||||
# Pacman
|
||||
|
||||
## List all installed packages
|
||||
```
|
||||
pacman -Qe
|
||||
```
|
||||
|
||||
# Uninstall, and list dependencies for package to be uninstalled
|
||||
|
||||
```
|
||||
pacman -Rcns
|
||||
```
|
|
@ -9,4 +9,4 @@ A programme that runs in the background, performing a system function. A daemon
|
|||
|
||||
The custom is for the process name of daemons to end in the letter `d`.
|
||||
|
||||
> In the original Greek _daemon_ is translated as 'helper', it doesn't have the medieval connotation of a dark spirit but was used to denote the actions of a god rather than the god itself. A person could have a personal _daemon_ which determines their fate.
|
||||
> In the original Greek _daemon_ is translated as 'helper', it doesn't have the medieval connotation of a dark spirit but was used to denote the actions of a god rather than the god itself. A person could have a personal _daemon_ which determines their fate.
|
||||
|
|
Loading…
Add table
Reference in a new issue