- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to read a 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
04-13-2004 04:37 AM
04-13-2004 04:37 AM
How to read a recovery tape
I have done a recovery tape using the following command.
make_tape_recovery -I -i
I need to reade the contents of this tape. Also I need to know how to restore the /var directory from this tape.
Your cooepration is highly appreciated.
best regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2004 04:41 AM
04-13-2004 04:41 AM
Re: How to read a recovery tape
# mt -f /dev/rmt/0mn rew
# mt -f /dev/rmt/0mn fsf 1
# tar -xvf /dev/rmt/0mn /var
Sundar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2004 04:43 AM
04-13-2004 04:43 AM
Re: How to read a recovery tape
First rewind the tape
mt rew
Then skip forward one file space
mt fsf 1
Then make sure you're in the root
cd /
Then extract var
tar xv var/*.*
Note NO leading slash. And IF your tape drive is not /dev/rmt/0mn then you'd need to specify it as that's the default.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2004 04:48 AM
04-13-2004 04:48 AM
Re: How to read a recovery tape
Well, compliments for speedy !
Bruno
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2004 05:11 AM
04-13-2004 05:11 AM
Re: How to read a recovery tape
ioscan shows that the device is /dev/rmt/0mb
I use this for the device
I use the tar tvf command instead of the x command as I want to read the contents of var.
I use the mt commands as advised.
update pelase
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2004 05:28 AM
04-13-2004 05:28 AM
Re: How to read a recovery tape
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2004 05:32 AM
04-13-2004 05:32 AM
Re: How to read a recovery tape
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2004 05:35 AM
04-13-2004 05:35 AM
Re: How to read a recovery tape
If you just want to read and not extract use tar tvf in place of tar xvf.
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
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2004 05:37 AM
04-13-2004 05:37 AM
Re: How to read a recovery tape
If you backed up using 0mb, use tar tvf /dev/rmt/0mnb to read the contents.
In the previous post use /dev/rmt/0mnb in place of /dev/rmt/0mn.
Hope this helps.
Regds