- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Appending to Backup Tape with Selective Resto...
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-25-2002 08:18 AM
01-25-2002 08:18 AM
Appending to Backup Tape with Selective Restore Possible
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2002 08:31 AM
01-25-2002 08:31 AM
Re: Appending to Backup Tape with Selective Restore Possible
You can use fbackup to do an incremental backups. Check man pages of fbackup, options 0-9 will select the incremental type.
If you want more scheduled and automated backup, use Omniback II or Legato Networker
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2002 08:33 AM
01-25-2002 08:33 AM
Re: Appending to Backup Tape with Selective Restore Possible
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2002 08:37 AM
01-25-2002 08:37 AM
Re: Appending to Backup Tape with Selective Restore Possible
I don't think there is any free utility which you can use to do this. you can take a backup using standard unix backup commands and using norewind device. This way you can write multiple backups to the same tape. However restoring from a particular backup in such a scene could be hairy.
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2002 08:49 AM
01-25-2002 08:49 AM
Re: Appending to Backup Tape with Selective Restore Possible
I think you should use the tar command.And mt for
tape positioning,
and marking.
And you should use non-rewinding device.
I suggest one script solution:
(It requires tar,mt,and an
index database on your computer)
The backup session could be:
tar cf /dev/rmt/0 /filesys1
mt -f /dev/rmt/0 eof
# this writes eof marks
tar cf /dev/rmt/0 /filesys2
mt -f /dev/rmt/0 eof
Next backup session:
# Go to the end of tape
mt -t /dev/rmt/0 eod
# (Only for DDS)
# for DLT you should go
# with fsf until the end
tar cf /dev/rmt/0 /filesys1
mt -f /dev/rmt/0 eof
Restore session:
# Rewind the tape
mt -f /dev/rmt/0
# Go for the appropriate position
for i in count
do
mt -f /dev/rmt/0 fsf
done
tar xf /dev/rmt/0 filename
But if you seeking an elegant solution Omniback is good for you.
(But it is a bit expensive)
Unfortunately the HPUX backup utility (fbackup) utility. doesn't append files to the end of the tape.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2002 09:39 AM
01-25-2002 09:39 AM
Re: Appending to Backup Tape with Selective Restore Possible
gnu's tar allows you to append files to an existing tar archive, and allows you to do a tar to a remote tape drive.
http://www.gnu.org/manual/tar/html_mono/tar.html#SEC48
main page for gnu's tar:
http://www.gnu.org/software/tar/tar.html
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2002 09:40 AM
01-25-2002 09:40 AM
Re: Appending to Backup Tape with Selective Restore Possible
Also, here is the PORTED version of gnu's tar:
http://hpux.cs.utah.edu/hppd/hpux/Gnu/tar-1.13.25/
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2002 06:23 AM
01-26-2002 06:23 AM
Re: Appending to Backup Tape with Selective Restore Possible
Laters
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2002 06:39 AM
01-26-2002 06:39 AM
Re: Appending to Backup Tape with Selective Restore Possible
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-27-2002 12:17 AM
01-27-2002 12:17 AM
Re: Appending to Backup Tape with Selective Restore Possible
You are asking for a major problem if you backup one weeks data on one tape.
The safest method is one backup one tape.
Paula