From 0733d76e2911fc0513f8b7d459fa6d36bf5116e2 Mon Sep 17 00:00:00 2001 From: tactonbishop Date: Thu, 16 Jun 2022 18:30:04 +0100 Subject: [PATCH] Last Sync: 2022-06-16 18:30:04 --- Linux/Procedural/Pacman.md | 17 +++++++++++++++++ Operating_Systems/Daemons.md | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 Linux/Procedural/Pacman.md diff --git a/Linux/Procedural/Pacman.md b/Linux/Procedural/Pacman.md new file mode 100644 index 0000000..44b307f --- /dev/null +++ b/Linux/Procedural/Pacman.md @@ -0,0 +1,17 @@ +--- +tags: + - Linux +--- + +# Pacman + +## List all installed packages +``` +pacman -Qe +``` + +# Uninstall, and list dependencies for package to be uninstalled + +``` +pacman -Rcns +``` \ No newline at end of file diff --git a/Operating_Systems/Daemons.md b/Operating_Systems/Daemons.md index c44647b..1bcdbe2 100644 --- a/Operating_Systems/Daemons.md +++ b/Operating_Systems/Daemons.md @@ -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. \ No newline at end of file +> 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.