0

Does it work once a week or does it continually trim the system? I have seen answers for this but they refer to Ubuntu 14.04 but not to Ubuntu 15.04

1 Answers1

0

fstrim has changed in Ubuntu 15.04 compared to previous version. fstrim-all --no-model-check is now called as fstrim --all. There is no more option to desiable model-check.

/etc/cron.weekly/fstrim does now contain:

#!/bin/sh
# trim all mounted file systems which support it
/sbin/fstrim --all || true

So you don't need to change anything in Ubuntu 15.04 concerning TRIM