Open bobbingwide opened 4 years ago
When code is parsed temporary files are created in the /tmp folder ( on Linux ). These are not being deleted so the disk fills up over time. These files can be safely deleted when the parsing has worked correctly.
/tmp
cd /tmp rm -f oikscloa*
or, if there are too many files
find /tmp -name oiksc* -type f -print | xargs /bin/rm -f
When code is parsed temporary files are created in the
/tmp
folder ( on Linux ). These are not being deleted so the disk fills up over time. These files can be safely deleted when the parsing has worked correctly.