On Sun, Jul 14, 2013 at 12:15:59PM +1000, Jeremy Visser wrote:> My volume group is /dev/vg_glimfeather. I haven?t interacted with the
> raw PV, /dev/sda6, in over a year.here's an example from the lvextend man page:
Extends the size of the logical volume "vg01/lvol10" by 54MiB on physi-
cal volume /dev/sdk3. This is only possible if /dev/sdk3 is a member of
volume group vg01 and there are enough free physical extents in it:
lvextend -L +54 /dev/vg01/lvol10 /dev/sdk3
and another from lvresize:
Extend a logical volume vg1/lv1 by 16MB using physical extents
/dev/sda:0-1 and /dev/sdb:0-1 for allocation of extents:
lvresize -L+16M vg1/lv1 /dev/sda:0-1 /dev/sdb:0-1
to extend or resize the volume, you've got to tell it which disk(s) to
allocate the free space from.