'noatime' simply inhibits the update of the inode's timestamp on access for ext* file systems. It thus cuts down on the number of writes to the filesystem. However, it does create some problems. A common one is the inability to discern whether or not you have new mail. (It tends to always look like you do.) I use 'relatime', which allows an inode update if the current access time on a file is older than the current modification time. This solves most of the timestamp problems, while still cutting down on file system writes, sometimes significantly.
Thanks for that pointer. I had just come across 'realtime', but have not really stopped fully understand it. Also thought that realtime may not be avialble on the ext2 fs on our ShPlug ...
So let me see if I understand relatime correctly: It does allow an access time update the first time a file is accessed after it has been modified, is that correct? If so, in my server application, where most files are not modified, it is almost equivalent to noatime, but without the disadvantages you pointed out. Great.
Since I now mount all the logs on tmps, I will lose the the logs on reboot, unless do a save of the needed critical ones from a shutdown init.d/script. ...