- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- make_recovery and restoring files
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-14-2000 03:00 AM
08-14-2000 03:00 AM
make_recovery and restoring files
Thanks
Wessel Baptist
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2000 03:12 AM
08-14-2000 03:12 AM
Re: make_recovery and restoring files
The make_recovery tape is made with pax, so pax or tar could be used to extract an individual file.
The /var/opt/ignite/logs/makrec.log1 file contains a summary of the make_recovery tape processes. This would show you where the date/time the last tape was made.
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2000 03:13 AM
08-14-2000 03:13 AM
Re: make_recovery and restoring files
1) mt -t /dev/rmt/0mn rew (rewind tape)
2) mt -t /dev/rmt/0mn fsf 1 (forward tape 1 marker)
3) cd /tmp
4) tar xvf /dev/rmt/0mn etc/passwd
(Or any other file on the tape)
Brian
<*(((>< er
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2000 03:17 AM
08-14-2000 03:17 AM
Re: make_recovery and restoring files
I believe the main archive on an ignite tape is in tar format so you should be able to restore an individual file if needed. It will be a couple or more records along the tape though so insert the tape into your drive (say 0m) and then fast-forward along, mt -t /dev/rmt/0mn fsf 1 then try a tar tvf /dev/rmt/0mn, if you dont see a tar listing then skip along to the next record and try again. Eventually you should find it and can then reposition the tape and tar xvf it.
If you create your ignite tapes using the -C option on make_recorvery then by running check_recovery it will tell you when you last ran a make_recovery and so reminding you when that tape was created - if the tape was created on the same system as the one you are running the check_recovery on. Alternatively look at the timestamp on the file /var/opt/ignite/recovery/makerec.last
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2000 06:23 AM
08-14-2000 06:23 AM
Re: make_recovery and restoring files
To just recover individual files you need to fast forward past the lif area and
then use tar to extract what you want.
Try:
# cd {directory_name_here}
# /mt fsf 1
# tar xvf /dev/rmt/0mn {file_name_here}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2000 06:25 AM
08-14-2000 06:25 AM
Re: make_recovery and restoring files
Leave out the
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2000 06:31 AM
08-14-2000 06:31 AM
Re: make_recovery and restoring files
Thanks.
BTW the "tar" command works wel.