IT Solutions · 2025-03-13 0

command line way to find large files/directories to remove and free up space

If you just need to find large files, you can use find with the -size option. The next command will list all files larger than 10MiB (not to be confused with 10MB):

find / -size +10M -ls

Simon Guetta

URL