- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: How to Display Contents of Tape Created with "...
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-11-2006 04:45 AM
01-11-2006 04:45 AM
Thanks, in advance, for any information.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2006 04:50 AM
01-11-2006 04:50 AM
Re: How to Display Contents of Tape Created with "make_recovery" Command
# mt -f /dev/rmt/1mn rew
# dd bs=8192k if=/dev/rmt/1mn of=/var/tmp/tape_boot_lif
Once that finishes you can run lifls, lifcp, etc. against the /var/tmp/tape_boot_lif file to see details. Check the man pages for those commands for more information.
To see the tar archive on the tape:
# mt -f /dev/rmt/1mn rew
# mt -f /dev/rmt/1mn fsf 1
# tar -tvf /dev/rmt/1mn
This will list all files in the pax/tar archive on the tape.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2006 04:55 AM
01-11-2006 04:55 AM
Re: How to Display Contents of Tape Created with "make_recovery" Command
The archive is a 'tar' (creaated with 'pax') archive and as such is extractable (or viewable) with 'tar' as documented in the 'make_tape_recovery' manpages, thusly:
# mt -t /dev/rmt/0mn fsf 1 # skip LIF
# tar -tvf /dev/rmt/0m # view contents
Of course, until you actually use a tape, you really can't guarantee that it's viable.
If the tape was created with the '-I' option of 'make_tape_recovery', you can also boot from it. The '-I' option will give you the ability to cancel the recovery that would otherwise result.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2006 05:02 AM
01-11-2006 05:02 AM
Re: How to Display Contents of Tape Created with "make_recovery" Command
After I did the 2nd step to look at the BOOT LIF, I received anI/O error, with 0 records in/out.
Not sure what happened...?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2006 06:00 AM
01-11-2006 06:00 AM
Re: How to Display Contents of Tape Created with "make_recovery" Command
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2006 06:32 AM
01-11-2006 06:32 AM
Re: How to Display Contents of Tape Created with "make_recovery" Command
mt -f /dev/rmt/1mn rew
dd bs=8192k if=/dev/rmt/1mn of=/var/tmp/tape_boot_lif
Looks like it doesn't like the BlockSize...
BTW: I did do the tar archive and it listed my backed up files.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2006 06:34 AM
01-11-2006 06:34 AM
Re: How to Display Contents of Tape Created with "make_recovery" Command
check this one to check the backed up files /dir.
# mt -f /dev/rmt/1mn rew
# mt -f /dev/rmt/1mn fsf 1
# tar -tvf /dev/rmt/1mn
hth,
Raj.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2006 07:35 AM
01-11-2006 07:35 AM
Re: How to Display Contents of Tape Created with "make_recovery" Command
If you use make_tape_recovery instead of make_recovery, you get the following benefits.
1) A log file including good info on the backup.
2) Support from HP
3) A warm fuzzy feeling knowing you are using the right tool for the job.
make_recovery is obsolete.
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 03:31 AM
01-12-2006 03:31 AM
Re: How to Display Contents of Tape Created with "make_recovery" Command
Now Steven, you informed me to use 'make_tape_recovery' sice HP no longer supports the one I used.
After reading through the man pages for the new one, I'm not exactlysure what options I should use to capture a good base for DR.
Any ideas/thoughts?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2006 03:37 AM
01-12-2006 03:37 AM
SolutionI prefer:
# /opt/ignite/bin/make_tape_recovery -x inc_entire=vg00 -I -v -a /dev/rmt/0mn
This create an Ignite image on tape for vg00. It adds an interactive prompt when the tape is booted, offering me the ability to customize the recovery to my needs. The '-v' (verbose) optino simply generates verbose output during tape creation.
I am a fanatic about keeping vg00 devoid of anything but the standard logical volumes for the operating system. Thus, I totally rely on backups of non-vg00 filesystems for the data restoration of them.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2006 03:43 AM
01-12-2006 03:43 AM
Re: How to Display Contents of Tape Created with "make_recovery" Command
For all but the -l option, I had selected all the other options you mentioned.
Thanks again for your help, and thanks to all who responded.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2006 03:44 AM
01-12-2006 03:44 AM