- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- make_tape_recovery : how to browse my tape ?
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
02-24-2003 08:11 AM
02-24-2003 08:11 AM
make_tape_recovery : how to browse my tape ?
I've run many successfully 'make_tape_recovery' scripts on my systems, without any pb + I've restored many of my tapes : OK, cool product.
But, one question: how could i read content of my tapes (ie: try to extract list of files saved on my tapes, without restore my tapes) ? (...using a tar command ?, I don't know.)
Thanks,
regards,
Stephane.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2003 08:14 AM
02-24-2003 08:14 AM
Re: make_tape_recovery : how to browse my tape ?
# mt -t /dev/rmt/0mn fsf 1
# tar -tvf /dev/rmt/0m > /tmp/index
Look at /tmp/index.
Make note of 0mn in the first command.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2003 08:15 AM
02-24-2003 08:15 AM
Re: make_tape_recovery : how to browse my tape ?
All you do is this
mt -f /dev/rmt/0mn rew # rewind the tape
mt -f /dev/rmt/0mn fsf 1 # move 1 file space forward
tar tvf /dev/rmt/0mn # read the tape with tar
Of course use the appropriate tape device if you don't have the default /dev/rmt/0mn
Be advised that does not guarantee that the tape is good, just that it can be read. The only sure way to know is to boot it.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2003 08:17 AM
02-24-2003 08:17 AM
Re: make_tape_recovery : how to browse my tape ?
there isny a tool like goust expoler if that what you are looking .
i will give you a few step to check the ignite backup and also to see the contect of the ignite tape .
These are the steps to follow to verify whether your Ignite
make_recovery tape is good:
1. Check the log generated during the Ignite backup:
/var/opt/ignite/logs/makrec.logxx
2. Boot from the tape and interrupt the boot process before
non-interactive recovery commences, and then abort the install.
This will verify whether the first image on the tape is bootable.
Note: There is a command shipped with Ignite, copy_boot_tape(1m)
that could also be of use to pull the LIF and the archive
off of a make_recovery tape.
You can use lifls(1) or lifcp(1) to examine the boot LIF
contents and pax(1) or tar(1) to examine the archive.
3. The second image on the tape is the tar archive of the OS and
possibly other files (depending on the options to make_recovery).
a) Skip over the first image with mt command using the
appropriate tape device file;
mt -f /dev/rmt/0mn rew
mt -f /dev/rmt/0mn fsf 1
b) Verify the contents of the tar image with the tar
command using the appropriate device file;
tar tvf /dev/rmt/0m
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2003 08:20 AM
02-24-2003 08:20 AM
Re: make_tape_recovery : how to browse my tape ?
I would have added. The above was only to generate list of files that were included with the tape. To find out if the boot area is good, do the following.
# mt -t /dev/rmt/0m rew
# dd if=/dev/rmt/0mn of=/tmp/tape_lif bs=2k
Now run the regular lif commands to verify 'bootimage' is proper.
lifls /tmp/tape_lif
lifcp /tmp/tape_lif:AUTO -
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2003 08:52 AM
02-24-2003 08:52 AM
Re: make_tape_recovery : how to browse my tape ?
My tape is on-(going)-reading !
Steph.