Finding out which files, folders or tools are consuming disk size might be tricky. In this article, I am going to discuss some
basic commands and tools those are helpful for finding out the issues and some measures that can prevent unnecessary disk usage.
Get started
The following command prints the folders with disk usage greater than a Gigabyte.
1 | du -h / 2>/dev/null | grep '[0-9\,]\+G\s' |
Explanation
du /
lists all the folders and their disk usage-h
flag prints the sizes in human-readable format|
pipe operatorgrep '[0-9\,]\+G\s'
runs a regular expression pattern in each line. The pattern means anyword that starts with at least one digit followed by a comma, then followed by a letter G
2>/dev/null
(This phrase suppresses all errors.) In this case, filters out all the “permission denied” error.
Sample output:
1 | 2.1G /usr/lib |