I suggest using "du" to gradually search deeper levels of directories within the "/usr" partition.
The following command could be used as a starting point:
Code:
# du -ahx --max-depth=1 /usr
To check levels deeper, simply append more directory structure to the path, such as the following examples:
Code:
# du -ahx --max-depth=1 /usr/local
# du -ahx --max-depth=1 /usr/local/apache
# du -ahx --max-depth=1 /usr/local/apache/logs
# du -ahx --max-depth=1 /usr/local/cpanel/logs
I recommend reviewing the manual "man" page for "du" to become more familiar other options and usage examples: