ls -lSrhThe "r" causes the large files to be listed at the end and the "h" gives human readable output (MB and such). You could also search for the biggest MP3/MPEGs:
ls -lSrh *.mp*You can also look for the largest directories with:
du -kx | egrep -v "\./.+/" | sort -n