learnbyexample@programming.dev to Linux@lemmy.mlEnglish · 1 day agoUnderstanding Unix filesystem timestampsunixdigest.comexternal-linkmessage-square7fedilinkarrow-up184arrow-down10
arrow-up184arrow-down1external-linkUnderstanding Unix filesystem timestampsunixdigest.comlearnbyexample@programming.dev to Linux@lemmy.mlEnglish · 1 day agomessage-square7fedilink
minus-squarestravanasu@lemmy.calinkfedilinkEnglisharrow-up2·11 hours agoSo what are the atime settings in a Linux distribution like Ubuntu?
minus-squareAsparagus0098@sh.itjust.workslinkfedilinkEnglisharrow-up3·9 hours agoYou can run this to check findmnt --real
minus-squarestravanasu@lemmy.calinkfedilinkEnglisharrow-up1·8 hours ago findmnt --real Cheers! Apparently Ubuntu uses the relatime setting.
minus-squareAsparagus0098@sh.itjust.workslinkfedilinkEnglisharrow-up1·5 hours agoIt is the default atime option used when mounting if I’m correct. If it’s an ubuntu specific mount option it will be specified in /etc/fstab file.
So what are the
atime
settings in a Linux distribution like Ubuntu?You can run this to check
findmnt --real
Cheers! Apparently Ubuntu uses the
relatime
setting.It is the default
atime
option used when mounting if I’m correct. If it’s an ubuntu specific mount option it will be specified in/etc/fstab
file.