1834621 Members
2235 Online
110069 Solutions
New Discussion

bande ignite

 
FOREST Michel
Frequent Advisor

bande ignite

how can I read the head of ignite's bande for knowledge the date of bande

thanks in advance.
LL
A rookie in the HP Forum :)
6 REPLIES 6
James R. Ferguson
Acclaimed Contributor

Re: bande ignite

Hi:

I'm not sure what you want. To see the version you have, do:

# swlist | grep -i ignite

Is this what you are after?

...JRF...
FOREST Michel
Frequent Advisor

Re: bande ignite

Hi JRF,
Sorry for my english ...
but I need a solution for read the head of bande create by make_recovery. Because I've bande Ignite but I don't know the date, the system .. I'm sure that is a bande Ignite only !
A rookie in the HP Forum :)
Vincent Stedema
Esteemed Contributor

Re: bande ignite

Hi,

I'm not sure if this going to work, but you could try "lifls -l" on the tape device file to find out which LIF headers are included on tape.
If I'm correct, an ignite tape consists of a boot block followed by a tar file. You could try the following:

#mt -t rew
#mt -t fsf 1
#tar tvf

If this works, extract a file which contains the information you need (eg. the syslog).

Vincent
Bill McNAMARA_1
Honored Contributor

Re: bande ignite

extract the syslog and look at the date.

Use the mt command as shown above.

Bande ignite = ignite tape

Good luck,
Bill


It works for me (tm)
Vincenzo Restuccia
Honored Contributor

Re: bande ignite

#mt -t /dev/rmt/0mn fsr 1
#cd /tmp
#tar xv var/adm/syslog/syslog.log
#tail -1 var/adm/syslog/syslog.log
FOREST Michel
Frequent Advisor

Re: bande ignite

thanks all,

mt -t /dev/rmt/0m rew
dd if=/dev/rmt/0m of=/tmp/lif.tape bs=2k
lifls -l /tmp/lif.tape

Best regards.
A rookie in the HP Forum :)