how to check whole size space dir wise in linux code example
Example 1: show directory size linux
du -sh /home/george
2.1G /home/george
Example 2: command to check size of folder in linux
du -lh --max-depth=1 --block-size=M | sort -nr
du -sh /home/george
2.1G /home/george
du -lh --max-depth=1 --block-size=M | sort -nr