- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Backup using tar and fbackup
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
10-21-2002 04:09 AM
10-21-2002 04:09 AM
I have a scheduled backup running every day using TAR to backup database files and other scheduled backup in SAM using FBACKUP only on fridays to backup the others files of the system. Can I use the same tape to do this job ? I??m afraid to lose one of the two backups.
Cheers,
Mauro
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2002 04:22 AM
10-21-2002 04:22 AM
SolutionRegards...
Dietmar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2002 04:38 AM
10-21-2002 04:38 AM
Re: Backup using tar and fbackup
It was my fear :-(
Thanks,
Mauro
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2002 04:53 AM
10-21-2002 04:53 AM
Re: Backup using tar and fbackup
From experiment, if you run fbackup to a NO-REWIND device (contrary to advice in the man pages) then the tape is not rewound.
So the following is possible...
1. Run fbackup -f /dev/rmt/?mn
2. Run your tar to the same device.
The (minor) difficulty is how to position to your tar dump if you heve to do a restore. One possibility is as follows...
export TAPE=/dev/rmt/?mn
mt rew
while true
do
mt fsf 1 || break
done
mt bsf 3
mt fsf 1
This code will leave the tape positioned at the start of the LAST file on the tape which will be your tar dump.
Running frecover with the -N flag (no recovery) also appears to leave the tape positioned correctly.
Regards,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2002 05:39 AM
10-21-2002 05:39 AM
Re: Backup using tar and fbackup
If possible, I'd use different tapes for the tar and fbackup jobs. I think you're asking for trouble in trying to save a tape, especially since you only backup the other files once a week. Ask yourself, what is it worth to know that you can restore your system?
Why not consider using fbackup instead of tar? On Friday you could backup your other files in addition to the database files.
I trust you have your database down while backing it up. Else, your backups may be unreliable.
Mauro, let me suggest you read:
http://66.216.15.50/ITRCForumsEtiquette
I think you'll find you get more (and perhaps more detailed) answers to your questions if you apply what you learn from the above web page, especially the "After Posting to the ITRC Forums" section.
Darrell