hi friends, Can someone please help me? All day Im received this email from my dedicated server: Drive Critical: /dev/loop0 (/var/tmp) is 91% full Drive Critical: /dev/loop0 (/var/tmp) is 100% full etc... Some months ago I increased the /tmp partition from 512MB to 2GB, but I think that wasnt enough, because recently I am receiving the notifications again, and when that happens, my cpu load goes to 40/50, very high... I did a: cd /var/tmp ls > list.txt this is the content of list.txt file: http://paste2.org/p/1323560 can you please suggest me what to do? Im very newbie in this things and Im afraid to do something wrong... Thank you
Since this is a cPanel server, do the following to free up space find /tmp -type f -name sess_* | xargs rm -f; find /tmp -type f -name cache* | xargs rm -f; service mysqld restart; Code (markup): That should clear up your temp space so you can tehn go in an look for other things that you can delete.