Pergunta

Running on Fedora 19, I realized that my /tmp directory is out of space.

Trying to find a solution I got confused.

Most answers state that previous releases of Fedora used tmwatch as cron job, which is not the case in my Fedora 19.

Other ways of accomplishing this might be:

rm -rf /tmp*

or even

find /tmp ...

which are commands that are considered "not accurate" in filtering the files which might be currently useful in order to preserve them.

My question is:

Is there a script to keep /tmp /var/tmp and/or other *tmp directories sane?

Foi útil?

Solução

In /etc/fstab:

tmpfs /tmp tmpfs rw,seclabel 0 0

This line will put /tmp on tmpfs as it should have been.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top