PVS command in HP-UX

Dear Engineer,

Is there any command in HP-UX work similiar to PVS command in Linux?

With Best Regards,
Md. Abdullah-Al Kauser

Similar would be pvdisplay

Regards
Peasant.

Dear concern,

Actually i am looking for a command in hp-ux from where i can get pv and vg mapping like pvs command in Linux.

With Best Regards,
Md. Abdullah-Al Kauser

It will output that (just not formatted as pvs) :

[root@host][root]>pvdisplay /dev/dsk/c1t0d0s2
--- Physical volumes ---
PV Name                     /dev/dsk/c1t0d0s2
VG Name                     /dev/vg00
PV Status                   available
Allocatable                 yes
VGDA                        2
Cur LV                      11
PE Size (Mbytes)            32
Total PE                    4345
Free PE                     491
Allocated PE                3854
Stale PE                    0
IO Timeout (Seconds)        default
Autoswitch                  On
Proactive Polling           On

This can be formated with a bit of awk magic do get the same display as linux pvs utility, if required.

Regards
Peasant.

You can also do the reverse with vgdisplay -v vgname and the PVs are listed in the bottom section (after the overview and LV definitions)

Robin