Operating System - Linux
1752803 Members
5696 Online
108789 Solutions
New Discussion юеВ

How to extend VG in MB/GB? linux

 
SOLVED
Go to solution
AA786
Frequent Advisor

How to extend VG in MB/GB? linux

i mean i want to extend the 10gb(lvol1) volume group tp 20GB

Harddisk having enough space 60GB..
u
4 REPLIES 4
Ivan Krastev
Honored Contributor
Solution

Re: How to extend VG in MB/GB? linux

See LVM how-to - http://tldp.org/HOWTO/LVM-HOWTO/extendlv.html

regards,
ivan
weisstik
Advisor

Re: How to extend VG in MB/GB? linux

Hello,

you have to extend your volume group and after that you must extend your logical volume.

vgextend

lvextend

If you use ext3 filesystem you may extend your fs online with ext2online

cheers
Oviwan
Honored Contributor

Re: How to extend VG in MB/GB? linux

hey

create a new 10gb partition with fdisk and extend the vg with the new partition and then the lvol

#vgextend /dev/yourvg /dev/newpartition
#lvextend -L 20480 /dev/yourvg/lvol1

-L new Size in MB

check the available size with vgdisplay and lvdisplay

regards
AA786
Frequent Advisor

Re: How to extend VG in MB/GB? linux

thanks