Skip to content

Instantly share code, notes, and snippets.

@kaubu
Last active June 22, 2024 22:00
Show Gist options
  • Save kaubu/29678db41a33d4f4a49300130ab7a971 to your computer and use it in GitHub Desktop.
Save kaubu/29678db41a33d4f4a49300130ab7a971 to your computer and use it in GitHub Desktop.
Cleans cache to get more story space on Arch-based Linux distributions
#!/bin/sh
# Remove old Haskell versions
ghcup gc --cache
# Clean pip cache
pip cache purge
# Remove packages cache
sudo pacman -Scc
yay -Scc
sudo paccache -r -f -k 0
# Remove orphaned packages
pacman -Qtdq | sudo pacman -Rns -
@kaubu
Copy link
Author

kaubu commented Jun 22, 2024

paccache requires installing extra/pacman-contrib

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment