- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: HP-UX fbackup append need to be done
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
09-23-2009 04:55 AM
09-23-2009 04:55 AM
HP-UX fbackup append need to be done
I have one HP-UX 11.23,One mount point is there i need to take fbackup on daily basis with append feature.
I want to take the backup of this below mount ponit with fbackup
/cdrbase/EXPORT_OTHER
Regards
Vinod
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2009 05:03 AM
09-23-2009 05:03 AM
Re: HP-UX fbackup append need to be done
You can't do this. By design, 'fbackup' does not allow appending to an existing archive. An 'fbackup' session will overwrite a tape every time.
Tape is cheap compared to tracking multiple archives that you could append (as for example, with 'tar' archives).
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2009 05:41 AM
09-23-2009 05:41 AM
Re: HP-UX fbackup append need to be done
I want to implete the incremental with fbackup in the /cdrbase/EXPORT_OTHER
mount every day no need to take complete the full backup for this mount pint.
Regards
Vinod
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2009 05:43 AM
09-23-2009 05:43 AM
Re: HP-UX fbackup append need to be done
When fbackup runs it ALWAYS rewinds the tape first. There is no fbackup "append".
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2009 05:50 AM
09-23-2009 05:50 AM
Re: HP-UX fbackup append need to be done
You can take incremental backup not "append"
fbackup -9i /cdrbase/EXPORT_OTHER -f
-0-9 = This single-digit number is the backup level. Level 0 indicates a full backup. Higher levels are generally used to perform incremental backups.When doing a incremental backup of a particular graph at a particular level, the database of past backups is searched to find the date of the most recent backup of the same graph that was done at a lower level. If no such entry is found, the beginning of time is assumed.All files in the graph that have been modified since this date are backed up
Regards
Sunny