Risposte:
Per vedere i dettagli dei tuoi lavori cron settimanali, modifica la directory /etc/cron.weekly
o includila nel comando come di seguito:
more /etc/cron.weekly/fstrim
Dovresti vedere un output simile a:
#!/bin/sh
# trim all mounted file systems which support it
/sbin/fstrim --all || true
Se presente, il trim è attivo / controllato ed eseguito una volta alla settimana. L'aiuto su questo comando ti mostrerà ...
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
Per vedere se il trim è supportato (cambia sda se hai più di 1 disco):
sudo hdparm -I /dev/sda | grep "TRIM supported"
e dovrebbe mostrare qualcosa di simile a questo:
* Data Set Management TRIM supported (limit 8 blocks)