1834926 Members
2535 Online
110071 Solutions
New Discussion

Re: pvcreate question

 
SOLVED
Go to solution
Fern H2O
Frequent Advisor

pvcreate question

Hello everyone,

Is there any way to know if a Disk was pvcreated using the -B option ???


3 REPLIES 3
Torsten.
Acclaimed Contributor
Solution

Re: pvcreate question

Hi,

lvlnboot -v

will show the disk if it was created with pvcreate -B.

You can also check the disk with lifls.

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!   
Marco A.
Esteemed Contributor

Re: pvcreate question

Hello,

ex :
# lifls /dev/rdsk/c0t6d0

A bootable disk reports something like:

ISL AUTO HPUX PAD LABEL

While a non bootable disk reports:

lifls: Can't list /dev/rdsk/c0t6d0; not a LIF volume

To show the content of the bootentries:

# lifcp : -

For example:

# lifcp /dev/dsk/c0t6d0:AUTO -
hpux

For further information on LIF, refer to lif(4).

Hope this helps,

Rgds,
Just unplug and plug in again ....
Fern H2O
Frequent Advisor

Re: pvcreate question

Thanks Marco and Tursten!