- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Restore a file with make_recovery
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-21-2000 02:33 AM
08-21-2000 02:33 AM
I need a help.
Can someone tell me How I have to do to
restore a file with a backup doing with
make_recovery?
When I do
mt -t /dev/rmt/0mn fsf 1
I take a error message
Thanks in advance
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2000 02:48 AM
08-21-2000 02:48 AM
Re: Restore a file with make_recovery
What kind of DLT?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2000 02:55 AM
08-21-2000 02:55 AM
Re: Restore a file with make_recovery
make_recovery is not a convention backup procedure. It uses pax to archive system configuration information on tape, with the point of recreating them on recovery.
Look for your last good backup and resore the file.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2000 03:29 AM
08-21-2000 03:29 AM
SolutionIgnite's make_recovery is not intended to make standard backup tapes. However you should be able to extract (with tar) a file by doing the following.
# mt -t /dev/rmt/0mn rew
# mt -t /dev/rmt/0mn fsf 1
# cd /tmp
# tar tar xvf /dev/rmt/0mn the_file_to_recover
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2000 03:58 AM
08-21-2000 03:58 AM
Re: Restore a file with make_recovery
Afaik you cannot restore a file from a recovery-tape. A recovery tape is ment to be booted from to restore your file-system and settings on your system in case you hardware has failed or you have (major) problems with your boot-drive and/or volumes.
To restore specific files you have to use your standard backup-tapes, created with tar, fbackup Omniback or other backup software.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2000 04:08 AM
08-21-2000 04:08 AM
Re: Restore a file with make_recovery
make_recovery is not designed to be used as a backup tool, but you can recover a file as James explained. I have done it once, and i had some problems, because the tape wasn?t right. That?s why i asked RAKOTOARISON for the error.
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2000 05:03 AM
08-21-2000 05:03 AM
Re: Restore a file with make_recovery
It sounds like it should be emphasized, the make_recovery is not a backup tool. Use it for vg00, the root area only.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2000 01:05 PM
08-22-2000 01:05 PM
Re: Restore a file with make_recovery
shouldn't you use "mt -f /dev/rmt/omn fsf 1" on HP-UX 11.00? Not "-t"!
Wodisch
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2000 04:18 AM
08-23-2000 04:18 AM
Re: Restore a file with make_recovery
Many thanks for your reply.
The problem is fixed by the solution
given by James R. FERGUSON
Thanks