- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: checking 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
06-01-2000 02:37 PM
06-01-2000 02:37 PM
checking make_recovery tape
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2000 03:29 PM
06-01-2000 03:29 PM
Re: checking make_recovery tape
# mt -t /dev/rmt/0mn fsf 1 (Jump to data files. The firts block keep boot image)
# tar -tvf /dev/rmt/0m filename (view or restore datafiles)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2000 07:53 PM
06-01-2000 07:53 PM
Re: checking make_recovery tape
1.boot from the tape and cancell the operation when it prompts for the " Press
2.you can test bu doing following .as well
mt -t < device name > rew ex: /dev/rmt/0m
mt -t < device name > fsf 1 ex: /dev/rmt/0mn
cd /tmp
tar xvf < device name > etc/passwd ex: /dev/rmt/0mn
After seeing that etc/passwd is restored, press Ctrl-C to cancel the operation. Otherwise, process will not be completed till it reaches the end of tape.
diff /etc/passwd /tmp/etc/passwd
mt -t
Keep the tape safe.
bye
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2000 04:38 AM
06-02-2000 04:38 AM
Re: checking make_recovery tape
You can test the first part of tape, perhaps the most important.
You must copy to disk using dd:
dd if=/dev/rmt/0mn of=/tmp/LIFfile bs=2k
Now the LIF is into your disk and you can do:
lifls /tmp/LIFfile -l
and see some of its file w/
lifcp /tmp/LIFfile:CONFIG /tmp/config
vi /tmp/config.
See in ignite documents for more information.
HTH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2000 08:07 AM
06-02-2000 08:07 AM
Re: checking make_recovery tape
When booting with tape, after scanning the hardwares and identifying all components it gets to a point where you are asked to continue, modify, ... reboot. Please reboot that means your tape is okey.
Note make recovery tapes are server specific. The -C option is for creating a check_recovery file called makrec.last.
Bye