Home
>
Internet,
Linux > Find Large Files on Ubuntu
Find Large Files on Ubuntu
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 large file, Linux