Archive

Posts Tagged ‘Linux’

Find Large Files on Ubuntu

July 11th, 2009

Here is the command that you can use to find files larger than 2G (quite usefult for application with 2G filesize limit, like INN2 compiled without large file support.)

1
find / -type f -size +2G -exec ls -lh {} \; | awk '{ print $8 ": " $5 }'

Internet, Linux ,