Hi, ich habe mich in den letzten Tagen damit beschäftigt, den TRIM-Befehl für meine SSD zu automatisieren. Bislang habe ich das ab und zu mit sudo fstrim -v /
gemacht. Nun habe ich dafür einen wöchentlichen Cron-Job erstellt, aber ich bin mir nicht sicher, ob das überhaupt noch nötig ist, denn in der fstab scheint das schon alles eingetragen zu sein. hier mal meine fstab:
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a device; this may
# be used with UUID= as a more robust way to name devices that works even if
# disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
UUID=E59B-9FC6 /boot/efi vfat umask=0077 0 2
UUID=2266017e-f110-4d8a-8f2f-4f56f90c510f / ext4 defaults,noatime,discard 0 1
UUID=76c9bf53-88a4-4d70-8949-b23a590140a8 /home ext4 defaults,noatime 0 2
tmpfs /tmp tmpfs defaults,noatime,mode=1777 0 0
Brauche ich da den wöchhentlichen Cron-Job eigentlich noch?
Gruß, Scruggs