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
Asked
Active
Viewed 1,644 times
0
1 Answers
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

Raphael Roth
- 111
-
1Ah, the change happened in the previous version (14.10), not in 15.04, as the dupe post says. – muru Dec 28 '15 at 06:58
trim all mounted file systems which support it
/sbin/fstrim --all || true
– Ervin Dine Sep 30 '15 at 15:24