D'abord voir si
TRIM est supporté par votre SSD :
sudo hdparm -I /dev/sda | grep "TRIM supported"
Voir ensuite si la commande suivante fonctionne :
sudo fstrim -v /
attendre quelques minutes et si elle affiche quelque chose comme çà :
/: 8004190208 bytes were trimmed
c'est bon.
Executer la commande ci dessous :
gksu gedit /etc/cron.daily/trim
puis coller cela :
#!/bin/sh
LOG=/var/log/trim.log
echo "*** $(date -R) ***" >> $LOG
fstrim -v / >> $LOG
fstrim -v /home >> $LOG
Enfin on rend le script executable :
sudo chmod +x /etc/cron.daily/trim
et voilà TRIM est activé.
Un bon article démontrant cette fonctionnalité : http://www.hardware.fr/articles/830-13/tenue-performances-trim.html
Aucun commentaire:
Enregistrer un commentaire