- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Verify and restore data by ignite backup function
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
04-17-2002 01:26 AM
04-17-2002 01:26 AM
I did use the command line
#/opt/ignite/bin/make_tape_recovery ???A
to backup system data. I would like to know how I can verify all the data in the tape? Also, how can I restore the data by ignite? Thanks a lot!
Regards
ajk
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2002 01:40 AM
04-17-2002 01:40 AM
SolutionFollow this procedure:
1. 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.
2. 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
Regards,
C.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2002 01:56 AM
04-17-2002 01:56 AM
Re: Verify and restore data by ignite backup function
I did use
#tar tvf /dev/rmt/0m
but it said "directory checksum error 4". Do you know why?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2002 02:57 AM
04-17-2002 02:57 AM
Re: Verify and restore data by ignite backup function
This is because there are two sessions or different parts in the tape, first you have the bottable image, then you have a tar file with the vg00 copy. Then you must jump the first part as Clemens tell you and then you can do a tar.
Best regards,
Justo.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2002 03:11 AM
04-17-2002 03:11 AM
Re: Verify and restore data by ignite backup function
dd if=/dev/rmt/0mn of=/tmp/LIFfile bs=2k
lifls /tmp/LIFfile -l
All the best
Victor