Skip to content

Instantly share code, notes, and snippets.

@eekfonky
Last active November 23, 2017 15:39
Show Gist options
  • Save eekfonky/e65d5e9024dd7c8a725bbdbe741ae7fd to your computer and use it in GitHub Desktop.
Save eekfonky/e65d5e9024dd7c8a725bbdbe741ae7fd to your computer and use it in GitHub Desktop.
Disk Space
# All Directories
sudo du -sch /* 2>/dev/null
# Top 10
sudo du -sch /* 2>/dev/null | sort -rh | head -n 10
# Specific Directory
sudo du -sch /<DIR>/* | sort -rh
# Current Directory
sudo du -sch ./* | sort -rh
# Clear Space Debian
sudo apt-get autoremove && sudo apt-get autoclean
# df -i is 100% try this first;
aptitude install -f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment