• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

Resolved Partition "/" utilization

nickdamico

New Pleskian
Hi I have 2 partitions on my plesk server and im having an issue with the smaller one, i have no idea what is taking up the disk space.

v1fiHZcl.png


Any Ideas?
 
First of all, try to find top 10 biggest files on your / partition with commands:

# cd /
# find -type f -exec du -Sh {} + | sort -rh | head -n 10
 
Code:
[root@plesk /]# find -type f -exec du -Sh {} + | sort -rh | head -n 10
du: cannot access ‘./proc/8440/task/8440/fdinfo/5’: No such file or directory
du: cannot access ‘./proc/8440/fdinfo/5’: No such file or directory
du: cannot access ‘./proc/11720/task/11720/fdinfo/5’: No such file or directory
du: cannot access ‘./proc/11720/fdinfo/5’: No such file or directory
find: ‘./proc/13048’: No such file or directory
du: cannot access ‘./proc/12745/task/12745/fdinfo/6’: No such file or directory
du: cannot access ‘./proc/12745/task/12745/fdinfo/8’: No such file or directory
du: cannot access ‘./proc/12745/task/12745/fdinfo/9’: No such file or directory
du: cannot access ‘./proc/12745/task/12745/fdinfo/10’: No such file or directory
du: cannot access ‘./proc/12745/fdinfo/6’: No such file or directory
du: cannot access ‘./proc/12745/fdinfo/8’: No such file or directory
du: cannot access ‘./proc/19055/task/19064/fdinfo/1991’: No such file or directory
du: cannot access ‘./proc/19055/task/19065/fdinfo/1991’: No such file or directory
du: cannot access ‘./proc/19055/task/19072/fdinfo/1991’: No such file or directory
du: cannot access ‘./proc/19055/task/19079/fdinfo/1991’: No such file or directory
du: cannot access ‘./proc/20669/task/20669/fdinfo/12’: No such file or directory
du: cannot access ‘./proc/20669/fdinfo/12’: No such file or directory

I Ran it and it seems to get stuck in proc... i think the problems started since i install revisium anti virus, is that possible?
 
Back
Top