ncdu
Ncdu is a disk usage analyzer with an ncurses interface.
bash
sudo apt-get install -y ncdu
ncdu /
Analyze command
bash
# Check disk space
df -h
# Show files size larger than 100M
. -type f -size +100M
find
# Show sorted folders size
| sort -h
du -hd1
Some safe commands
bash
# Clean the apt cache
sudo apt clean
# Delete old log files
"*.gz" -delete
sudo find /var/log -type f -name
# Delete unused docker images
docker image prune