1847794 Members
2656 Online
104021 Solutions
New Discussion

ignite

 
SOLVED
Go to solution
f. halili
Trusted Contributor

ignite

I created an ignite backup with this command:

# /opt/ignite/bin/make_tape_recovery -Av -a /dev/rmt/0mn

I want to restore just "one file system" from that ignite backup. Is that possible? How?

Thanks,
f. halili
derekh
3 REPLIES 3
Pete Randall
Outstanding Contributor
Solution

Re: ignite

You need to skip over the boot headers, then you can use tar or pax to extract your file.

mt -f /dev/rmt/0mn fsf 1
tar -xvf . . . .


Pete

Pete
erics_1
Honored Contributor

Re: ignite

As a sidenote, make sure to leave off the leading slash '/' in your tar command.

ex. --> tar -xvf opt


Regards,
Eric
f. halili
Trusted Contributor

Re: ignite

thanks
derekh