22 Oct 2012
#df -h
#df -i
contar ficheiros em pastas:
for i in `ls -1A`; do echo “`find $i | sort -u | wc -l` $i”; done | sort -rn | head -5
ou
sudo find . -xdev -type f | cut -d "/" -f 2 | sort | uniq -c | sort -n
http://www.nzlinux.com/2010/06/inode-problems-and-full-disks/
http://stackoverflow.com/questions/653096/howto-free-inode-usage
http://paulscomputernotes.blogspot.be/2012/06/disk-full-but-still-space…