Last access timestamp updated every 24 hours
Solution 1:
If you have a SSD, the relatime
mount option is automatically set. Here is what it does (source):
Relatime maintains atime data, but not for each time that a file is accessed. With this option enabled, atime data is written to the disk only if the file has been modified since the atime data was last updated (mtime), or if the file was last accessed more than a certain length of time ago (by default, one day).
Try changing relatime
to noatime
in your /etc/fstab
file to confirm the reason for these updates.