Created
October 1, 2022 10:37
-
-
Save attilaolah/251f5dfad7da28e3dd9e64492847bb90 to your computer and use it in GitHub Desktop.
Arch System Cleanup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Clean up the package manager cache: | |
yay --sync --clean | |
# Clean up the Nix store: | |
nix-store --gc | |
# Clean up system journals, except the past two days: | |
journalctl --vacuum-time=2d | |
# DANGER ZONE: | |
# Remove orphaned packages: | |
pacman -Qtdq | sudo pacman -Rns - | |
# Remove Flatpak unused packages: | |
flatpak uninstall --unused |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment