Created
January 29, 2013 10:52
-
-
Save rozhok/4663441 to your computer and use it in GitHub Desktop.
*nix disk usage snippets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#http://www.sakana.fr/blog/2010/01/17/linux-unix-disk-usage-and-identifying-biggest-files/ | |
kattoo@roadrunner ~/Downloads $ df | sort -n -k 5,5 | |
Filesystem 1K-blocks Used Available Use% Mounted on | |
shm 2029696 0 2029696 0% /dev/shm | |
# largest folders | |
kattoo@roadrunner /usr/portage $ du -sk * | sort -n | tail -20 | |
# find large files | |
kattoo@roadrunner /usr/portage $ find . -type f -size +10000000c -exec ls -l \{} \; | sort -n -k 5,5 | tail -10 | |
-rw-rw-r-- 1 portage portage 23416703 Oct 1 10:07 ./distfiles/samba-3.0.37.tar.gz | |
-rw-rw-r-- 1 portage portage 28749072 Jan 18 2008 ./distfiles/extremetuxracer-0.4.tar.gz | |
-rw-rw-r-- 1 portage portage 46905557 Oct 16 17:20 ./distfiles/firefox-3.5.4.source.tar.bz2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment