1827630 Members
3564 Online
109966 Solutions
New Discussion

Ignite image extract

 
SOLVED
Go to solution
MikeL_4
Super Advisor

Ignite image extract

Is there a way to extract files from an Ignite image created from a make_net_recovery ?
5 REPLIES 5
Pete Randall
Outstanding Contributor

Re: Ignite image extract

Mike,

Sure - you need to skip past the boot headers with "mt -t /dev/rmt/0mn fsf 1", then use pax or tar to extract what you want.


Pete

Pete
MikeL_4
Super Advisor

Re: Ignite image extract

it's not tape, it's a disk image from make_net_recovery....
Pete Randall
Outstanding Contributor

Re: Ignite image extract

Oops - sorry!


Pete

Pete
Patrick Wallek
Honored Contributor
Solution

Re: Ignite image extract

Absolutely:

# gzcat ignite_image_name | tar -xvf - dir/filename

Make absolutely sure you put spaces in the appropriate spots:

# gzcat ignite_image_name | tar -xvf-dir/filename
MikeL_4
Super Advisor

Re: Ignite image extract

Thanks alot.