Created
October 21, 2020 10:44
-
-
Save grumpysi/4cb8602de54887c0217c26c92e21a80d to your computer and use it in GitHub Desktop.
Find which folder is using too much disk space on Ubuntu
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
du -cha --max-depth=1 / | grep -E "M|G" | |
du -cha --max-depth=1 /var | grep -E "M|G" | |
du -cha --max-depth=1 /srv/www/ | grep -E "M|G" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment