En Debian 6, tengo estos archivos grandes que están vinculados a Python
/tmp/tmpLwS5ny.tbuf (deleted)
/tmp/tmpMjH6hy.tbuf (deleted)
/tmp/tmpGtY5dz.tbuf (deleted)
No quiero reiniciar el servidor, pero ¿debería eliminarlos? ¿Cómo hago esto?
Respuesta1
Puede agregar este script como un trabajo cron para eliminar los archivos sin reiniciar
#!/bin/sh
# Clean file and dirs more than 3 days old in /tmp nightly
/usr/bin/find /tmp -type f -atime +2 -mtime +2 |xargs /bin/rm -f &&
/usr/bin/find /tmp -type d -mtime +2 -exec /bin/rm -rf '{}' \; &&
/usr/bin/find /tmp -type l -ctime +2 |xargs /bin/rm -f &&
/usr/bin/find -L /tmp -mtime +2 -print -exec rm -f {} \;
guarde el contenido anterior en un archivo chmod 775 el archivo y cree una entrada cron para ejecutarlo