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! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.