If you just need to find large files, you can use find
with -size
option. Below command will list all the files larger than 100MB.
find / -size +100M -ls
If you want to set an upper limit.
find / -size +100M -size -500M -ls
If you need a tool for better analysis, continue reading…
Leave a Comment