File System Types and Timestamps
Identify/Mount Filesystem Type
Filesystem Table Configuration Location
/etc/fstab
Common filesystem types and their Timestamps
EXT3
Access (atime) - the last time the file was read
Modify (mtime) - the last time the file was modified (content modified)
Change (ctime) - the last time the meta data of the file was changed (timestamps, filetype, permissions).
EXT4
Access (atime) - the last time the file was read
Modify (mtime) - the last time the file was modified (content modified)
Change (ctime) - the last time the meta data of the file was changed (timestamps, filetype, permissions).
Created (crtime) - may be present on EXT4 filesystems.
XFS
Access (atime) - the last time the file was read
Modify (mtime) - the last time the file was modified (content modified)
Change (ctime) - the last time the meta data of the file was changed (timestamps, filetype, permissions).
Created (crtime) - may be present on XFS filesystems.
ZFS
Access (atime) - the last time the file was read
Modify (mtime) - the last time the file was modified (content modified)
Change (ctime) - the last time the meta data of the file was changed (timestamps, filetype, permissions).
Created (crtime) - may be present on ZFS filesystems.
Last updated