How to Find Large Files Modified Recently in Linux
My server ran out of disk. Which files grew the most in the last 24 hours? Try: sudo find / -type f -mtime -1 -size +100M -exec ls -lah {} \; 2>/dev/null Info: Uses -mtime -1 to target files modified within the last 24 hours and -size +100M to isolate […]
Read More