1. Navigate to the affected directory. 2. Execute command: ```bash du -h * | sort -rh | head ``` `du -h *` - show file space usage in a human-readable format (K, M, G, etc) using du. `sort -rh` - sort the results using sort. `-h` - human numeric sort (takes into account sorting if human-readable format is present) `-r` - reverse the results `head` - print only top 10 lines from the output ### See also 1. [[How to remove files older than 30 days?]] ### Reference 1.