Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 290 Bytes

cleanup.md

File metadata and controls

12 lines (9 loc) · 290 Bytes
  • clean up folder /usr/src or /boot in ubuntu without manually delete:
apt autoremove
  • find file olders than 7 days and delete
find /var/log/haproxy* -mdate +7 -exec rm -f {} \;

if you want make sure you don't delete wrong file, change -f to -i to confirm before delete