- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- about make_recovery 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
08-06-2004 08:41 AM
08-06-2004 08:41 AM
how to check when make_recovery tape was made?
(how to read from tape when it was made?)
thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2004 08:50 AM
08-06-2004 08:50 AM
Solution# ioscan -fnkC tape
# mt -t /dev/rmt/0m rew
# dd if=/dev/rmt/0m of=/tmp/TAPE bs=1024k count=8
# lifls -l /tmp/TAPE
The time stamp you see is the time your recovery tape was last created.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2004 08:51 AM
08-06-2004 08:51 AM
Re: about make_recovery tape
The best way (100%) to check a make_recovery tape, IMHO, is to try to restore from it.
The second way is the following:
mt -f /dev/rmt/0mn fsf 1
tar tvf /dev/rmt/0m
Make_recovery tape consists of two files:
bootable part and tar file after it.
If you can read tar file, 95% that the tape is OK.
You can also try to boot from the tape. If the boot is OK and tar reads the tape, it's OK (99%).
Good luck
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2004 08:54 AM
08-06-2004 08:54 AM
Re: about make_recovery tape
http://forums1.itrc.hp.com/service/forums/questionanswer.do?admit=716493758+1091825438605+28353475&threadId=178514
I posted a script that will do this in the above thread...
--
Tony
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2004 08:57 AM
08-06-2004 08:57 AM
Re: about make_recovery tape
Also, check files in:
/var/opt/ignite/recovery/
There might be a file called: "latest", which is a link to the most current make_recovery run.
Tape Contents - use the "mt" command.
You can skip the 1st file on the Tape, and then run tar tvf
example:
mt -t /dev/rmt/0m rew
# the above does a "REWind" of the Tape.
mt -t /dev/rmt/0mn fsr
# the above does a "Forward Skip Record"
# note the 'mn', or no-rewind device file.
tar tvf /dev/rmt/0m
note: if you running 11.11 please upgrade using "make_tape_recovery", and you might have to install a "pax" Patch.
hope this helps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2004 09:02 AM
08-06-2004 09:02 AM
Re: about make_recovery tape
Great idea!!! I've just looked at a couple of machines and that works like a champ! I'd never thought of doing that.
I would give you 10 points if I could!
(0 points for me please!)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2004 09:38 AM
08-06-2004 09:38 AM
Re: about make_recovery tape
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2004 10:51 AM
08-06-2004 10:51 AM
Re: about make_recovery tape
It works and I have what I need :)