- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: extending logical volume 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
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
09-04-2002 08:20 AM
09-04-2002 08:20 AM
I'm not too familiar with striping so here goes...
I have a 4Gig mountpoint mounted up and striped across 4 different disks. I want to extend the size of the mountpoint to 8Gig. Can I run some sort of lvextend command to do this as an option or do I even have any options??
Thanks,
-Ken
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-04-2002 08:27 AM
09-04-2002 08:27 AM
Re: extending logical volume size
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-04-2002 08:27 AM
09-04-2002 08:27 AM
Re: extending logical volume size
Yes, If there is free space in the volume group this volume belongs to it is possible. The easiest vay is to use SAM/Disk and File system/Logical Volumes/Increase size for this. Note , If you don't have Onnline JFS otion installed, this filesystem should not be in use when doing this.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-04-2002 08:28 AM
09-04-2002 08:28 AM
Re: extending logical volume size
I built a script to generate another script with all the lvextend commands.
Hope this helps...
-- Rod Hills
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-04-2002 08:29 AM
09-04-2002 08:29 AM
Re: extending logical volume size
lvextend will automatically extend the logical volume including the striping provided one of the following is true.
1. You should have atleast 1 GB free on each disk.
2. Add four more disks to the volume group having the striped volume.
You can use the following procedure if you do not have onlineJFS.
umount /dev/vg??/lvol??
lvextend -L 8000 /dev/vg??/lvol??
extendfs /dev/vg??/rlvol??
Replace ??s with the corresponding numbers|names.
If you have online JFS, you don't need to unmount the lvol.
lvextend -L 8000 /dev/vg??/lvol??
fsadm -b 8192000 /mount_point
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-04-2002 08:32 AM
09-04-2002 08:32 AM
Re: extending logical volume size
Yes, you can 'lvextend'. The requirement with striped logical volumes is simply that the same number of disks already striped across must be used to extend.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-04-2002 08:42 AM