# df -hshow list of partitions mounted [man]
# dpkg-query -W -f='${Installed-Size;10}t${Package}n' | sort -k1,1nshow the used space by installed deb packages, sorting by size (debian, ubuntu and alike) [man]
# du -sh dir1estimate space used by directory 'dir1' [man]
# du -sk * | sort -rnshow size of the files and directories sorted by size [man]
# ls -lSr |moreshow size of the files and directories ordered by size [man]
# rpm -q -a --qf '%10{SIZE}t%{NAME}n' | sort -k1,1nshow the used space by rpm packages installed sorted by size (fedora, redhat and alike) [man]