Skip to content

Instantly share code, notes, and snippets.

@henrytriplette
Last active May 3, 2019 09:52
Show Gist options
  • Save henrytriplette/cabde9d874dbd779fe87d6d89f1145d6 to your computer and use it in GitHub Desktop.
Save henrytriplette/cabde9d874dbd779fe87d6d89f1145d6 to your computer and use it in GitHub Desktop.
RaspberryPi Clean Var/Cache

List Free Space

df -Bm 

List Space by usage

sudo du -xh / | grep -P "G\t"

Cleanup

sudo apt-get clean
sudo apt-get autoclean
sudo apt-get autoremove

Rotate logs

sudo logrotate -d /etc/logrotate.conf

Remove unused programs

sudo apt-get purge wolfram-engine libreoffice* scratch -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment