- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- tar append backup
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-23-2002 01:59 AM
10-23-2002 01:59 AM
Is it possible at all to append the new backup to the end of tape ?
A lot of time I only want backup very few important files and feel it's
really waste to have only a few files on each tape.
Also, after backup entire system on several tapes, it requires to go through
all the tapes to just restore one file if that one is on the last tape.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2002 02:04 AM
10-23-2002 02:04 AM
Re: tar append backup
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2002 02:09 AM
10-23-2002 02:09 AM
Re: tar append backup
r Add the named file to the end of the archive. The same
blocking factor used to create the archive must be used to
append to it. This option cannot be used if the archive is a
tape.
So, the answer appears to be that you can append - but not to a tape.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2002 02:10 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2002 02:24 AM
10-23-2002 02:24 AM
Re: tar append backup
my statement is " tar -rvf /dev/tape file " ,
but it seems not work,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2002 02:25 AM
10-23-2002 02:25 AM
Re: tar append backup
Use tar rvf /dev/rmt/xm file
If we made everything clear to You pls assign points.
C.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2002 03:40 AM
10-23-2002 03:40 AM
Re: tar append backup
Sorry it's not the answer you wanted - maybe look into fbackup.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2002 03:48 AM
10-23-2002 03:48 AM
Re: tar append backup
I have read the man page and indeed this comment is there.
But.....
They say sometimes don't try this at home...
In this case I would try, because it really works fine with tape !!
C.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2002 03:52 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2002 04:08 AM
10-23-2002 04:08 AM
Re: tar append backup
It would seem that my interpretation of the man page was entirely too literal. From the docs that TG pointed out, it looks like it should work.
I also noted in the fine print of the tar man page, under dependencies, this qualification:
"The r and u function keys are not supported on QIC or 8mm devices."
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2002 04:11 AM
10-23-2002 04:11 AM
Re: tar append backup
----
Theory no
practical yes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2002 04:12 AM
10-23-2002 04:12 AM
Re: tar append backup
That it, works like a charm....
C.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2002 08:00 PM
10-23-2002 08:00 PM
Re: tar append backup
Am not able to append to an archive on tape. Using the command:
tar cvf /dev/st0 file1
writes the file1 to the tape. It can be seen using the command:
tar tvf /dev/st0
Using the command:
tar rvf /dev/st0 file2
seems to do something, file2 pops up on screen but
tar tvf /dev/st0
shows that only file1 is on the tape.
file2 does not seem to be written on /dev/st0
Thanks for any help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2002 10:03 PM
10-23-2002 10:03 PM
Re: tar append backup
Try this one:
It will work if you have configured just one tape drive on your system:
tar cv file1
tar rv file2
tar tv should give both files in return.
C.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2002 12:26 AM
10-24-2002 12:26 AM
Re: tar append backup
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2002 12:38 AM
10-24-2002 12:38 AM
Re: tar append backup
tar uvf /dev/st0 file1
tar cvf /dev/st0 file1
will not append
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2002 12:59 AM
10-24-2002 12:59 AM
Re: tar append backup
Of course, a workaround would be to create the tar archive on disk, and then append to this archive, and then copy it to the tape using dd.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2002 01:05 AM
10-24-2002 01:05 AM
Re: tar append backup
this man page comment was added due to some less commonly used tape mechanisms
which cannot support append. Append is still supported for tapes on which it has always worked.
So out of interest, which tape drive are you using?
Also what OS, and have you patched the tar coomand?