Reputation: 9616
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?
Upvotes: 0
Views: 3576
Reputation: 9616
In /etc/fstab:
tmpfs /tmp tmpfs rw,seclabel 0 0
This line will put /tmp on tmpfs as it should have been.
Upvotes: 1