- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Add more space to a Lvol
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
06-14-2002 10:46 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2002 10:47 AM
06-14-2002 10:47 AM
Re: Add more space to a Lvol
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2002 10:51 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2002 10:52 AM
06-14-2002 10:52 AM
Re: Add more space to a Lvol
Say your lvol1 is belongs to vg01
#vgdisplay vg01
Free PE 30
and 1 PE=4mb then you can extend your lv by 120MB.
#umount /dev/vg00/lvol1
#lvextend -L new_size /dev/vg01/lvol1
where new_size= original_size+120
Then
extendfs -F hfs /dev/vg01/rlvol1
mount /dev/vg01/lvol1 mount_point
Sachin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2002 10:55 AM
06-14-2002 10:55 AM
Re: Add more space to a Lvol
lvextend -L xxxx /dev/vg_name/lv_name
And if you have On-Line JFS you don't even have to unmount. If not you'll have to unmount
umount /mnt_point
If no free space in VG.
Add disk & initialize it
pvcreate -f /dev/rdsk/cxtydz
Add it to the VG
vgextend vg_name /dev/dsk/cxtydz
extend the LV
lvextend -L xxxx /dev/vg_name/lv_name
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2002 10:59 AM
06-14-2002 10:59 AM
Re: Add more space to a Lvol
Marty
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2002 11:04 AM
06-14-2002 11:04 AM
Re: Add more space to a Lvol
vgextend /dev/vg01 /dev/dsk/c20t5d3
vgcfgbackup /dev/vg01
lvcreate -n lvf1 /dev/vg01
SZ=current allocated PEs + No. of PEs you add
lvextend -l SZ /dev/vg01/lvf1 /dev/dsk/c18t5d2
lvdisplay /dev/vg01/lvf1
mount -F vxfs /dev/vg01/lv1 /f1
Ameet
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2002 11:15 AM
06-14-2002 11:15 AM
Re: Add more space to a Lvol
Now let me say this I have 1 vg it contains 11 lvol. One of those is at 98% and it is 1/3 set at 4007201 kbytes than I have another that is part of a group 1/8 set at 4019546 kbytes this is a total of 11 lvol, again this is all in the same vg. I would like to expand both of those lvol's. Can I take from some of the other lvols that aren't even close to these two and redistribute some of there space to these two that are in need of some space.
I am really new at doing this, However this system is going to be shut down in the near future and we aren't looking to add any disk to this system.
I hope I make sense by all this and I do thank you all.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2002 11:24 AM
06-14-2002 11:24 AM
Re: Add more space to a Lvol
Marty
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2002 11:25 AM
06-14-2002 11:25 AM
Re: Add more space to a Lvol
To redistribute the space allocated to some other lv, you have to take a backup of the lv you want to redistribute, then remove the lv, increase the size of the other lv's, recreate the lv that was removed and then restore the data.
backup data from spare lv,
remove spare lv
increase the size of other lv
create spare lv with lower size
restore data to spare lv.
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2002 03:03 PM
06-14-2002 03:03 PM
Re: Add more space to a Lvol
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2002 12:23 PM
06-15-2002 12:23 PM
Re: Add more space to a Lvol
Yep, Dan, you gotta backup the one that you want to decrease, remove it, extend the one(s) you want to (no backups needed for those), recreate the "old" big one (smaller now) & restore to it.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2002 05:13 AM
06-16-2002 05:13 AM
Re: Add more space to a Lvol
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2002 06:28 AM
06-17-2002 06:28 AM