Operating System - HP-UX
1832676 Members
2958 Online
110043 Solutions
New Discussion

How to create volume group with PE 16 in Itanium based server

 
ROCK_10
Advisor

How to create volume group with PE 16 in Itanium based server

Hi All ,
I want to create a volume group of vgaroot .
4 REPLIES 4
whiteknight
Honored Contributor

Re: How to create volume group with PE 16 in Itanium based server

Hi Rahul,

Could you please elaborate your question ?

Thanks

WK
Problem never ends, you must know how to fix it
Denver Osborn
Honored Contributor

Re: How to create volume group with PE 16 in Itanium based server

You didn't mention any details... but here's a plain vanilla w/ 16MB pe size.

mkdir /dev/vgaroot
mknod /dev/vgaroot c 64 0xNN0000
pvcreate /dev/rdsk/cNtNdN
vgcreate -s 16 /dev/vgaroot /dev/dsk/cNtNdN

For syntax and examples, man vgcreate


-denver
Geoff Wild
Honored Contributor

Re: How to create volume group with PE 16 in Itanium based server

I use -p and -e as well:

-e max_pe
-p max_pv
-s pe_size

I use pe_size 32 so I can use bigger LUNS


vgcreate -s 32 -p 64 -e 32768 /dev/vg11 /dev/dsk/c25t12d3


Rgds...Geoff
Proverbs 3:5,6 Trust in the Lord with all your heart and lean not on your own understanding; in all your ways acknowledge him, and he will make all your paths straight.
ROCK_10
Advisor

Re: How to create volume group with PE 16 in Itanium based server

thanx