Find Large Files on Linux
Beginner
How to Find Large Files on Linux? Quick Answer: Use find / -type f -size +100M -ls 2>/dev/null to locate all files larger than 100MB...
Bash
find / -type f -size +100M -ls 2>/dev/null