Su Ubuntu 14.04 come si controlla se TRIM è attivo per un'unità SSD


9

Su Ubuntu 14.04 come si controlla se TRIM è attivo per un'unità SSD? Altre impostazioni che vale la pena verificare per un'unità SSD?

Risposte:


15

Per vedere i dettagli dei tuoi lavori cron settimanali, modifica la directory /etc/cron.weeklyo 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)

1
FWIW, funziona anche come mostrato in Ubuntu 15.04.
John T,

Ho letto da qualche parte che questa opzione di taglio è supportata solo su SSD Samsung e Intel? È vero?
Ljiljan Veselinovic,

@LjiljanVeselinovic almeno quelli. Ma anche altri. Il mio OCZ funziona anche per esempio,
Rinzwind

Ho comprato Trascent 370S. Trim è supportato. Ubuntu 16.04 eseguirà questo lavoro periodicamente?
Ljiljan Veselinovic,

si una volta alla settimana (vedi cron.weekly;))
Rinzwind
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.