Last active
November 23, 2017 15:39
-
-
Save eekfonky/e65d5e9024dd7c8a725bbdbe741ae7fd to your computer and use it in GitHub Desktop.
Disk Space
This file contains hidden or 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
# 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