Administrators Leon Posted August 16, 2012 Administrators Share Posted August 16, 2012 Sometimes it can be a bloody hell to find out whats eating up storage space on a linux machine... Try this one out.... # find / -type f -size +20000k -exec ls -lh {} \; 2> /dev/null | awk '{ print $NF ": " $5 }' | sort -nrk 2,2 It will give you a list of files larger than 20mb, sorted by size... Enjoy! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now