Operating System - HP-UX
1834116 Members
2442 Online
110063 Solutions
New Discussion

Re: Restore a single file from a ignite-ux copy

 
SOLVED
Go to solution
Jose Juan
Advisor

Restore a single file from a ignite-ux copy

Is possible to recover a single file from a copy of Ignite-UX?
If so. How can I do?

thanks in advance.
6 REPLIES 6
Torsten.
Acclaimed Contributor

Re: Restore a single file from a ignite-ux copy

An ignite on tape consists of a boot header and a tar archive. You need to forward the tape until the tar starts.
Do you have HP9000 or Integrity system?

Hope this helps!
Regards
Torsten.

__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.

__________________________________________________
No support by private messages. Please ask the forum!

If you feel this was helpful please click the KUDOS! thumb below!   
Jean-Luc Oudart
Honored Contributor
Solution

Re: Restore a single file from a ignite-ux copy

Jose

This question has been submitted in the past. See thread :
http://forums11.itrc.hp.com/service/forums/questionanswer.do?admit=109447626+1256119782954+28353475&threadId=1009153

Regards
Jean-Luc
fiat lux
Sunny Jaisinghani
Trusted Contributor
R.K. #
Honored Contributor

Re: Restore a single file from a ignite-ux copy

Hi..

From Ignite Tape:
(1) mt -f /dev/rmt/0mn rew
(2) mt -f /dev/rmt/0mn fsf 1
(3) tar xvf /dev/rmt/0mn etc/lvmtab

From Ignite Image:
To restore a specific file or directory from an ignite image on a ignite server
cd /var/opt/ignite/recovery/archives/
Check for the available images and select the one from which you want to restore.
#gunzip -c |tar -xvf -
eg: To restore /opt/ssh/etc from a image file "2008-01-17,13:53",
#gunzip -c 2008-01-17,13:53|tar -xvf - opt/ssh/etc

This will restore the opt/ssh/etc dir relative to the current path, which can be copied to the actual destination.
Don't fix what ain't broke
Torsten.
Acclaimed Contributor

Re: Restore a single file from a ignite-ux copy

From ignite tape (made on Integrity):

From Ignite Tape:
(1) mt -f /dev/rmt/0mn rew
(2) mt -f /dev/rmt/0mn fsf 22
(3) tar xvf /dev/rmt/0mn ...

Hope this helps!
Regards
Torsten.

__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.

__________________________________________________
No support by private messages. Please ask the forum!

If you feel this was helpful please click the KUDOS! thumb below!   
Jose Juan
Advisor

Re: Restore a single file from a ignite-ux copy

Thank you very much.