- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: How does last modification of the inode get ch...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2006 01:18 AM
03-09-2006 01:18 AM
How does last modification of the inode get changed?
Vendor insists that their logic is based on the last modification time of the file.
I have found that it is actually the last modification time of the inode.
I have to find some other process running on my machine that changes the last modification of the inode but not the file.
Any ideas on which utilities can change the inode time and not the file time?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2006 01:25 AM
03-09-2006 01:25 AM
Re: How does last modification of the inode get changed?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2006 01:26 AM
03-09-2006 01:26 AM
Re: How does last modification of the inode get changed?
The 'mtime' (modification timestamp) only changes when the file (or directory) is actually modified. The 'ctime' is the last change timestamp and is altered whenever the permissions, name, owner, or other inode data of a file or directory is altered.
Some backup utilities (like 'fbackup') reset the 'atime' of files that they back up. Resetting the last access time ('atime') changes the 'ctime' since the timestamps themselves are inode information and changing inode data changes the 'ctime'.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2006 01:39 AM
03-09-2006 01:39 AM
Re: How does last modification of the inode get changed?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2006 01:51 AM
03-09-2006 01:51 AM
Re: How does last modification of the inode get changed?
I do have fbackup running on my machine.
I'll start there.