- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- extract 1 file form make_net_recovery image
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-26-2002 05:16 AM
04-26-2002 05:16 AM
I like to extract 1 file from a recovery file which is made with make_net_recovery (ignite). I can do this on de ignite server. The problem is that I don't know which format the recovery file is, I think it's not a tar or a cpio?
Thanks,
Robert Verhagen.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2002 05:21 AM
04-26-2002 05:21 AM
Re: extract 1 file form make_net_recovery image
You would have to fast forward past the boot image to the beginning of the pax archive.
Try searching the forums for related posts, I belive this has been answered before.
Good Luck!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2002 05:30 AM
04-26-2002 05:30 AM
Re: extract 1 file form make_net_recovery image
follow this link for the solution
good luck
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2002 05:36 AM
04-26-2002 05:36 AM
Re: extract 1 file form make_net_recovery image
From JRF's answer in the preceding post:
To extract files from a make_recovery or make_tape_recovery tape, do this:
# mt -t /dev/rmt/0mn fsf 1
# tar -xvf /dev/rmt/0m filename
Note the norewind option in the 'mt' command! This example assumes tape device 0m, change it according to your taste.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2002 05:37 AM
04-26-2002 05:37 AM
Re: extract 1 file form make_net_recovery image
Try these steps
# mt -t /dev/rmt/0mn rew
# mt -t /dev/rmt/0mn fsf 1
# cd /tmp (Or wherever you wish to )
# tar xvf /dev/rmt/0mn Fthe file_name_to_be_restored
Goodluck,
-USA..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2002 05:40 AM
04-26-2002 05:40 AM
Solutionhttp://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xa2630719e045d6118fff0090279cd0f9,00.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2002 05:52 AM
04-26-2002 05:52 AM
Re: extract 1 file form make_net_recovery image
It think it is pax.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2002 06:34 AM
04-26-2002 06:34 AM
Re: extract 1 file form make_net_recovery image
gzcat ./2002-03-12,15:02 | pax -r -f - etc/exports
is the commando for extracting the exports file form the ignite image
Robert.