SSH: Lijst met grootste bestanden
Login via SSH op uw Linux server en voer onderstaande commando uit om alle bestanden te vinden die groter zijn dan 100MB:
CentOS, Fedora:
find / -type f -size +100000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'
Debian, Ubuntu:
find / -type f -size +100000k -exec ls -lh {} \; | awk '{ print $8 ": " $5 }'