I'm trying to get my root partition to mount with the atime option on boot. I'm running Ubuntu 14.04.
I've modified my /etc/fstab file:
UUID=334a0fe1-2636-4ee6-93b5-8748c5313c79 / ext4 atime,errors=remount-ro 0
...but that has no effect:
$ mount | head -n1
# => /dev/sda1 on / type ext4 (rw,errors=remount-ro)
What is it that I need to do, please?
atimemostly is the default option, so you don't need to define that. It's just used with mount operations to override defaultnoatimeoption. – ridgy Dec 10 '17 at 19:49relatimehas been the default.man mountsays ofrelatime: Since Linux 2.6.30, the kernel defaults to the behavior provided by this option (unless noatime was specified), and the strictatime option is required to obtain traditional semantics. – Jellicle Dec 10 '17 at 19:52/bin/loginwas last called. It does not appear to show the time when I last logged in to my system. – Jellicle Dec 10 '17 at 20:00