Questions? Feedback? powered by Olark live chat software
Knowledgebase
Author Avatar

Cannot Write to tmp Directory

Written by: on 14 September 2013 06:27 PM 14 September 2013 06:27 PM

Cannot write to tmp directory file corruption even if there is space available? Follow step by step to solve such issues.

Sometimes particularly if the /tmp directory gets full on your server, the underlying tmpDSK file can get corrupted. If this occurs you will not be able to write to the /tmp directory even if there is space available.

To fix this do the following:

Login to your server via SSH then type the following commands:

lsof /tmp   
umount -l /tmp 
umount -l /var/tmp   
# This command removes the corrupt partition file 
rm -fv /usr/tmpDSK   
# Create a nice new one 
/scripts/securetmp
If you wish to increase your tmp directory size, you can change the value inside the /scripts/securetmp file before running it - search for $tmpdsksize
(1 vote(s))
Helpful
Not helpful