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?
atime
mostly is the default option, so you don't need to define that. It's just used with mount operations to override defaultnoatime
option. – ridgy Dec 10 '17 at 19:49relatime
has been the default.man mount
says 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/login
was 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