Well, This VG00 has all the 13 Lvols??
Any way Here is the process
If the second disk is not yet used in any of the VG then you need to add this to existing vg00, It is good to have a mirrored boot disk
In this example, the disk to be used as an additional mirror copy will be /dev/dsk/c0t5d0, which will include root and the swap logical volumes. The primary mirror copy will be on /dev/dsk/c0t6d0.
# pvcreate -B /dev/rdsk/diskname (c0t7d0)
# vgextend /dev/vg00 /dev/dsk/c0t7d0
# mkboot -l /dev/rdsk/c0t7d0
# mkboot -a "hpux" /dev/rdsk/c0t7d0
Or, use the -lq option to allow the system to boot in the event that one of the disks is unavailable, resulting in a loss of quorum.
# mkboot -a "hpux -lq" /dev/rdsk/c0t7d0
# lifcp /dev/rdsk/c0t5d0:AUTO -
# setboot -a 8/0/19/0.5.0
The hardware address of the disk that will become the mirror disk can be determined with 'ioscan -fnC disk'. To check, use setboot without any arguments.
If desired, activate autosearch and autoboot by
# setboot -s on -b on
Use pvdisplay -v to the order of the logical volumes on the primary disk.
# pvdisplay -v /dev/dsk/c0t7d0
NOTE: In the following, the standard sequence lvol1, lvol2, lvol3, and so forth, is assumed.
Mirror the boot logical volume, primary swap logical volume, root logical volume and other logical volumes as needed, to the mirror disk in the correct sequence
# lvextend -m 1 /dev/vg00/lvol1 /dev/dsk/c0t7d0
# lvextend -m 1 /dev/vg00/lvol2 /dev/dsk/c0t7d0
# lvextend -m 1 /dev/vg00/lvol3 /dev/dsk/c0t7d0
# lvextend -m 1 (additional LV)
# lvlnboot -r /dev/vg00/lvol3 /dev/vg00
# lvlnboot -b /dev/vg00/lvol1 /dev/vg00
# lvlnboot -s /dev/vg00/lvol2 /dev/vg00
# lvlnboot -d /dev/vg00/lvol2 /dev/vg00
# lvlnboot -v
Both disks must be listed for root, boot and swap definitions.
-Goodluck
-USA..
Good Luck..