Results 1 to 2 of 2
When a file is appended, are only the modify and change times updated, and not the access time? Or is it all 3?...
- 06-10-2008 #1Just Joined!
- Join Date
- May 2008
- Posts
- 9
Regarding file times
When a file is appended, are only the modify and change times updated, and not the access time? Or is it all 3?
- 06-10-2008 #2Linux Guru
- Join Date
- Nov 2007
- Location
- Córdoba (Spain)
- Posts
- 1,513
The access times should be updated each time the file is opened, in whichever mode.
The problem is that most distros use the "noatime" mount options by default. Which will obviate the update of the access time, slightly speeding up the file system operations.
Code:$ man mount
The mount options are usually defined in /etc/fstab.noatime
Do not update inode access times on this file system
(e.g, for faster access on the news spool to speed up
news servers).


Reply With Quote
