From ed9bfb1f6e8352f70f794403a186a7f05e0c432b Mon Sep 17 00:00:00 2001 From: Paul Reiter Date: Fri, 22 Feb 2019 22:25:39 +0100 Subject: [PATCH] paccache: add page (#2788) --- pages/linux/paccache.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 pages/linux/paccache.md diff --git a/pages/linux/paccache.md b/pages/linux/paccache.md new file mode 100644 index 000000000..58ccd992f --- /dev/null +++ b/pages/linux/paccache.md @@ -0,0 +1,19 @@ +# paccache + +> A flexible pacman cache cleaning utility. + +- Remove all but the 3 most recent package versions from the pacman cache: + +`paccache -r` + +- Set the number of package versions to keep: + +`paccache -rk {{num_versions}}` + +- Perform a dry-run and show the number of candidate packages for deletion: + +`paccache -d` + +- Move candidate packages to a directory instead of deleting them: + +`paccache -m {{path/to/directory}}`