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?

有帮助吗?

解决方案

In /etc/fstab:

tmpfs /tmp tmpfs rw,seclabel 0 0

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

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top