Você pode executar um sudo fstrim -v /
(substituir "/" por outros pontos de montagem, se tiver algum), para verificar se o fstrim fornece algum erro.
Se isso não acontecer, digite cat /etc/cron.weekly/fstrim
, que deve fornecer uma saída como:
#!/bin/sh
# call fstrim-all to trim all mounted file systems which support it
set -e
#
# This only runs on Intel and Samsung SSDs by default, as some SSDs with
# faulty firmware may encounter data loss when running fstrim under high I/O
# load (e. g. https://launchpad.net/bugs/1259829). You can append the
# --no-model-check option here to disable the vendor check and run fstrim on
# all SSD drives Like this (remove the hash):
#exec fstrim-all --no-model-check
exec fstrim-all
Se isso acontecer, significa que o seu Ubuntu reconheceu automaticamente que você tem um SSD e o cortará uma vez por semana como um trabalho cron.
Se você quiser otimizar seu sistema para SSD, confira este artigo .