- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: fbackup effecting other 3rd party backups?
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
01-12-2006 02:01 AM
01-12-2006 02:01 AM
We continue to use fbackup for redundancy.
We have daily fbackup jobs performing a FULL system backup.
With our new application, we have a full backup running on Saturday's and incremental backups running Sunday-Friday.
We saw that our incremental backups were backing up almost 95% of a full system when modification times do not support this.
Several weeks of consulting with the vendor has yielded no solutions.
On one of our servers I removed the fbackup job. Now, that server's incremental backup is behaving as expected.
Somehow our 3rd party software thinks a file should be included in an incremental backup, but looking at the modification time of the file indicates otherwise.
Does fbackup somehow touch files without changing the modification time?
Does anyone have experience with fbackup effecting other backups in a similiar way?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2006 02:08 AM
01-12-2006 02:08 AM
Re: fbackup effecting other 3rd party backups?
'fbackup' resets the lastaccess ('atime') of files it backs up. Thus, you will find that the 'ctime' [last inode timestamp change] *is* changed. The modifiction 'mtime' is seperate from either the 'atime' or 'ctime' and is *not* affected by 'fbackup'.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2006 02:10 AM
01-12-2006 02:10 AM
SolutionUse the ls -c (change time) and -u (access time) option to examine these metadata as well and you may find your answer.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2006 02:17 AM
01-12-2006 02:17 AM
Re: fbackup effecting other 3rd party backups?
Some PC based softwares use the Archive bit as a way to determine if a file should be included in an incremental or note.
HTH
-- Rod Hills
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2006 02:22 AM
01-12-2006 02:22 AM
Re: fbackup effecting other 3rd party backups?
Our 3rd party software must be using the access time. Or at least it is not using the modification time.
# ls -l make.disks.lst
-rwxr-x--- 1 root sys 10450 Jan 6 12:07 make.disks.lst
# ls -lc make.disks.lst
-rwxr-x--- 1 root sys 10450 Jan 12 03:52 make.disks.lst
# ls -lu make.disks.lst
-rwxr-x--- 1 root sys 10450 Jan 11 04:38 make.disks.lst
#
I suppose there is no way to have fbackup reset the access time?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2006 02:29 AM
01-12-2006 02:29 AM
Re: fbackup effecting other 3rd party backups?
As I noted, 'fbackup' *does* reset the 'atime' (lastaccess timestamp) of files that it copies. This is the reason that the 'ctime' is *changed*.
An 'ls -lc' displays the 'ctime' as you saw for January 12. I suspect that your third-party software is being triggered by that attribute.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2006 02:39 AM
01-12-2006 02:39 AM
Re: fbackup effecting other 3rd party backups?
Also the archive bit is set, because fbackup can track and do incremental backups itself.
I think this poses a problem for using your third party product.
The way we got around it (previous job) was do do a weekly fbackup full which we kept around for sysadmins to use and let Veritas do all the complex stuff involving incremental.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2006 02:55 AM
01-12-2006 02:55 AM
Re: fbackup effecting other 3rd party backups?
You all provided more information in the last 10 minutes than I have gotten from our vendor since November!!
Armed with this information, I will contact our vendor.
Thanks again!!