TYLOR.TECH

Search
Close this search box.

Disk Space Commands

# disk usage filesystem to grep any dir larger than 1G to sort largest on top 
sudo du -xh / |grep '^\S*[0-9\.]\+G'|sort -rn 
#10 biggest files on system 
sudo find / -printf '%s %p\n'| sort -nr | head -10
Share this Post:
Scroll to Top