Eski veya yeni sağda solda kalmış yedekleri silme.
Logları silme.
Tmp silme.
Çöp Kutularını boşaltma.
Error logları silme.
Tüm gelen giden mailleri silme.
find /home/* -name backup-*.tar.gz -type f -ls -exec rm -f {} ;
find /home/*/logs/* -type f -ls -exec rm -f {} ;
find /home/*/tmp/* -type f -ls -exec rm -f {} ;
find /home/*/.trash/* -type f -ls -exec rm -f {} ;
find /home/*/public_html -name error_log -type f -ls -exec rm -f {} ;
find /home/*/mail/* -type f -ls -exec rm -f {} ;
Cpanel vps ve sunucu kullanıcıları için ssh temizlik komutları.
0
●230