Skip to content

Instantly share code, notes, and snippets.

@jfoclpf
Last active September 22, 2024 11:11
Show Gist options
  • Save jfoclpf/923f6e83b52812acd330c346041f321b to your computer and use it in GitHub Desktop.
Save jfoclpf/923f6e83b52812acd330c346041f321b to your computer and use it in GitHub Desktop.
Clean space on Linux file system
# check big directories
sudo du / -hxd 4 | sort -rh | head -10
# Clean ALL docker containers if you're not using them
[sudo] docker system prune -a
# empty trash
rm -rf ~/.local/share/Trash/*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment