du -sh /var/lib/*For find top 5 folder by usage:

du -Sh | sort -rh | head -5

For find top 5 files

du -hs * | sort -rh | head -5