How much disk space takes a file or directory up?du -s -h /your/file
du -s -h /your/directory/
Get the 10 biggest files/folders for the current direcotrydu -sh * | sort -rh | head
Show free disk spacedf -h
List only directoriesls -d */
currently mounted filesystems in nice layoutmount | column -t
Mount folder/filesystem through SSHsshfs name@server:/path/to/folder /path/to/mount/point
Mount iso imagemount /path/to/file.iso /mnt/cdrom -o loop