Unter Debian 6 habe ich diese großen Dateien, die mit Python verknüpft sind
/tmp/tmpLwS5ny.tbuf (deleted)
/tmp/tmpMjH6hy.tbuf (deleted)
/tmp/tmpGtY5dz.tbuf (deleted)
Ich möchte den Server nicht neu starten, aber soll ich sie löschen? Wie mache ich das?
Antwort1
Sie können dieses Skript als Cron-Job hinzufügen, um die Dateien ohne Neustart zu entfernen
#!/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 {} \;
Speichern Sie den obigen Inhalt in einer Datei chmod 775 die Datei und erstellen Sie einen Cron-Eintrag, um sie auszuführen