- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- increse size of lv
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-11-2006 01:50 AM
03-11-2006 01:50 AM
increse size of lv
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2006 02:14 AM
03-11-2006 02:14 AM
Re: increse size of lv
Do you want to increase size of a LV ? If you have installed OnlineJFS, you can do it online,
# swlist -l product|grep -i online
and use "fsadm" command to increase size of a LV.
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2006 02:18 AM
03-11-2006 02:18 AM
Re: increse size of lv
i am using i didn't hv jfs . iam using vxfs .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2006 02:26 AM
03-11-2006 02:26 AM
Re: increse size of lv
Since you don't have OnlineJFS,
# umount /dev/vg00/lvolx
# extendfs /dev/vg00/rlvolx
# mount /dev/vg00/lvolx
-Arun
P.S Remember to assign points.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2006 03:56 AM
03-11-2006 03:56 AM
Re: increse size of lv
Once extended, if there is a filesystem, you'll need to umount the filesystem, use extendfs and then mount the filesystem. If you have the extra cost product called Online JFS, you can extend the filesystem without unmounting it.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2006 04:30 PM
03-11-2006 04:30 PM
Re: increse size of lv
If you do not have Online JFS, follow below steps.
1. Unmount the filesystem
#umount /filesystem
2. Extend the logical volume (Remember the final size is considered as 2092MB)
#lvextend -L 2092 /dev/vgxx/lvolxx
3. Extend filesystem (Remember to use raw device file, ie. rlovolxx)
#extendfs /dev/vgxx/rlvolxx
4. Mount filesystem
#mount /filesystem
If you do have Online JFS, follow below steps.
1. Extend logical volume,
#lvextend -L 2092 /dev/vgxx/lvolxx
2. Extend filesystem (Remember it uses /etc/default/fs as the default filesystem)
#fsadm -b 2092M /filesystem
Hope this helps,
Best of luck
Shahul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2006 08:11 PM
03-11-2006 08:11 PM
Re: increse size of lv
The error "logical extended number is not bigger than current settings " is due to the wrong usage of lvextend command.
Here is the explaination. You informed us that the LV is 2000MB. let it be lvol6.To get the above error I guess you would have tyoed the following..
lvextend -L 92 /dev/vg00/lvol6
since 92 is less than 2000, hence the error message.
Please rember "lvextend" takes the final size(2092) and not difference in increase (92).
Your command to succeed should be...
lvextend -L 2092 /dev/vg00/lvol6
Regards,
Senthil Kumar .A
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2006 02:01 AM
03-13-2006 02:01 AM
Re: increse size of lv
I got solved problem from ur information . thanks for all