En ubuntu 14.04, ¿cómo verifica si TRIM está activado para una unidad SSD? ¿Otras configuraciones que vale la pena verificar para una unidad SSD?
9
Para ver los detalles de sus trabajos cron semanales, cambie el directorio /etc/cron.weekly
o inclúyalo en el comando de la siguiente manera:
more /etc/cron.weekly/fstrim
Debería ver una salida que se parece a:
#!/bin/sh
# trim all mounted file systems which support it
/sbin/fstrim --all || true
Si está presente, el recorte está activo / verificado y se ejecuta una vez por semana. La ayuda de este comando te mostrará ...
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
Para ver si se admite el recorte (cambie sda si tiene más de 1 disco):
sudo hdparm -I /dev/sda | grep "TRIM supported"
y debería mostrar algo similar a esto:
* Data Set Management TRIM supported (limit 8 blocks)