- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: lvextents number is not bigger than current se...
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
03-10-2008 09:46 AM
03-10-2008 09:46 AM
i am using lvextend -L 8192 /dev/vgname/lvname
when i do vgdisplay i get
free PE=595
PE SIZE=16
that means i have over 9 gigs of space.. Max PE per PV is 3474...
wHAT Do u guys think is happening here.. I have online jfs....
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2008 09:59 AM
03-10-2008 09:59 AM
Re: lvextents number is not bigger than current setting
If the *current* size of the logical volume isn't smaller than 8192 megabytes, you will get this message. The '-L' argument is a specification in megabytes. The '-l' argument is a specification in logical extents. The new value of either must be larger than the old value.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2008 03:14 PM
03-10-2008 03:14 PM
Re: lvextents number is not bigger than current setting
So this error message is ur current LV size is equal or more than to 8192 bytes, hence you are getting this message.
Check the current LV size and then extend it accordingly.
In lvdisplay o/p for this LV Check for the "LV Size (Mbytes)"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2008 07:10 PM
03-10-2008 07:10 PM
Solutionlvextend with -L must be use with new lv size.
examples to increase from 1gb to 2gb logical volume:
# lvextend -L 2000M /dev/vg01/lvol2
# extendfs -F vxfs /dev/vg01/rlvol2
if you have online jfs, it would much simpler
# fsadm -F vxfs -b
eg: increase to 2gb for /data fs
# fsadm -F vxfs -b 4194304 /data
appreciate if you cld assign some points if this answer your question, thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2008 09:51 PM
03-10-2008 09:51 PM
Re: lvextents number is not bigger than current setting
Additionally, 9 GB / 16 MB = ~576. Close enough. Its never exact. So 9 GB is correct.
So, as pointed out above, use lvextend -L 57344 /dev/vg01/lvol1 /dev/dsk/cXtXdX (* all 56 GB *), -or- lvextend -l 3474. Same difference.