Yanıtlar:
Haftalık cron işlerinizin ayrıntılarını görmek için dizini /etc/cron.weekly
aşağıdaki gibi değiştirin veya aşağıdaki komuta ekleyin:
more /etc/cron.weekly/fstrim
Şuna benzer bir çıktı görmelisiniz:
#!/bin/sh
# trim all mounted file systems which support it
/sbin/fstrim --all || true
Eğer mevcutsa, trim aktif / kontrol edilir ve haftada bir kez uygulanır. Bu komutla ilgili yardım gösterecektir ...
fstrim --help
Usage:
fstrim [options] <mount point>
Options:
-a, --all trim all mounted filesystems that are supported
-o, --offset <num> the offset in bytes to start discarding from
-l, --length <num> the number of bytes to discard
-m, --minimum <num> the minimum extent length to discard
-v, --verbose print number of discarded bytes
-h, --help display this help and exit
-V, --version output version information and exit
Trim'in desteklenip desteklenmediğini görmek için (1'den fazla diskiniz varsa sda'yı değiştirin):
sudo hdparm -I /dev/sda | grep "TRIM supported"
ve buna benzer bir şey göstermelidir:
* Data Set Management TRIM supported (limit 8 blocks)