Find biggest files
sudo du -a / | sort -n -r | head -n 20
Find biggest folders
du -h --max-depth=2
exclude dirs
sudo du -h --max-depth=1 --exclude=./home --exclude=./var --exclude=./proc
Last updated
Was this helpful?
sudo du -a / | sort -n -r | head -n 20
Find biggest folders
du -h --max-depth=2
exclude dirs
sudo du -h --max-depth=1 --exclude=./home --exclude=./var --exclude=./proc
Last updated
Was this helpful?