- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: What sets PE size
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-18-2006 03:59 AM
тАО05-18-2006 03:59 AM
PE Size (Mbytes) 16
sometimes it can be 4 or 8. What controls this? I see no option to set PE size in pvcreate.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-18-2006 04:05 AM
тАО05-18-2006 04:05 AM
SolutionIt will be with
vgcreate the -s options
-s pe_size Sets the number of megabytes in each physical
extent, where pe_size is expressed in units
of megabytes (MB) in the range 1 to 256.
pe_size must be equal to a power of 2 (1, 2,
4, 8, etc.). The default value for pe_size
is 4 (four megabytes).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-18-2006 04:07 AM
тАО05-18-2006 04:07 AM
Re: What sets PE size
-USA..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-18-2006 04:14 AM
тАО05-18-2006 04:14 AM
Re: What sets PE size
One extent is the smallest piece of disk you can (theoretically) present to the applications as a logical volume.
When you create a volume group, you decide the maximum number of extents, the extent size and the maximum number of physical volumes in the volume group. These three things determine the size of the LVM configuration data for that volume group.
Because all disks in a volume group must have the same extent size, there is no point to set PE size in pvcreate.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-18-2006 04:17 AM
тАО05-18-2006 04:17 AM
Re: What sets PE size
Another question I have, I have a HP 73.4G disk.
However in the vg00 volume group info, (the only volume group I have):
Total PE 4318
PE Size (Mbytes) 16
Which means I have 69088 MB on that disk.
However, diskinfo reveals it has 73.4GB or 75161.6 MB, or a difference of 6073 MB. Where did that 6GB go? Has it gone to another "slice" (this is an Itenium machine) or has it gone for filesystem creation?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-18-2006 04:46 AM
тАО05-18-2006 04:46 AM
Re: What sets PE size
I belive it has gone to your filesystem creation, also is your vg00 mirrored?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-18-2006 05:22 AM
тАО05-18-2006 05:22 AM
Re: What sets PE size
#1 is the FAT-32 slice used for booting
#2 is the standard LVM slice for the OS
#3 is the Diag slice used for Offline Diags.
So the vgdisplay of vg00 is only going to show you the size of slice #2
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-18-2006 05:54 AM
тАО05-18-2006 05:54 AM
Re: What sets PE size
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-18-2006 02:45 PM
тАО05-18-2006 02:45 PM
Re: What sets PE size
#vgcreate -s PE_SIZE -e MAX_PE
PE_SIZE can be: 8,16,32,64...
Max_pe is number you can specify to address all you disk's capacity
Eg: You want to create 01 VG contains 02 73GB disk with PE=16 so MAX_PE=>73*2=146GB*1024/16MB=9344
HTH