- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to create large logical volumes
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
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
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
07-10-2006 05:22 AM
07-10-2006 05:22 AM
I've a volume group of around 410 GB and I want to mount it in only one logical volume.
Can I do this? I'm trying through SAM and it said size exceed limit.
VG info:
VG Name /dev/vg10
VG Write Access read/write
VG Status available
Max LV 255
Cur LV 0
Open LV 0
Max PV 16
Cur PV 1
Act PV 1
Max PE per PV 51199
VGDA 2
PE Size (Mbytes) 8
Total PE 51192
Alloc PE 0
Free PE 51192
Total PVG 0
Total Spare PVs 0
Total Spare PVs in use 0
Thanks in advance for your help.
Regards,
Carles
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2006 05:29 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2006 05:30 AM
07-10-2006 05:30 AM
Re: How to create large logical volumes
You are too close. LVM needs space for its headers -- VGRA & PVRA (Volume Group Reserved Area and Physical Volume Reserved Area). This requires one physical extent.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2006 05:13 PM
07-10-2006 05:13 PM
Re: How to create large logical volumes
You might have to recreate vg10 by specifying a higher PE size of say 64 Mbytes (instead of the current PE size of 8 Mbytes) and lowering the Max PE per PV value to 6560 (instead of 51199). Reason is that the VGRA should be able to fit exactly into a single PE. Steps are given below:
1. remove vg10
# vgexport /dev/vg10
2. re-create vg10 with the new LVM parameters
# vgcreate -s 64 -e 6560 /dev/vg10 /dev/dsk/cXtYdZ
3. create the desired size lvol
# lvcreate -L 419840 /dev/vg10
~hope it helps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2006 07:50 PM
07-10-2006 07:50 PM
Re: How to create large logical volumes
Thanks to all for your help.
Regards,
Carles