How to find Other Usage' from cPanel Disk Space Usage?

HostStud

Administrator
Staff member
Other Usage in the cpanel Disk Space (Quota) is calculated by files that are located outside of the /home directory and are owned by that user.
Files can be in /tmp directory, cache files, mailman or backups etc.

Change USERNAME with your user
# find / -user USERNAME


# find / -user $USER > /other-usage.txt
Above command will search the server and results will be saved in other-usage.txt file.
 
Top