Linux/LVM how to increase file system size by adding physical volume

From voipsupport
Revision as of 00:25, 14 June 2016 by John (talk | contribs) (Created page with "1. Scan for devices that can be used as physical volumes <pre>lvmdiskscan</pre> 2. Create physical volume <pre>pvcreate /dev/sdd1</pre> 3. Display physical volume <pre>pv...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

1. Scan for devices that can be used as physical volumes

lvmdiskscan

2. Create physical volume

pvcreate /dev/sdd1

3. Display physical volume

pvdisplay

4. Display logical volume group

vgdisplay

5. Add a physical volume to a logical volume group

vgextend vg1 /dev/sdf1

6. Display all logical volumes

lvdisplay

7. Display a specific logical volum

lvdisplay -v /dev/myvg/homevol<pre>

8. Extend logical volume by a set amount (e.g. 1GB)
<pre>lvextend -L+1G /dev/myvg/homevol
  1. %item value=9% Extend logical volume to a set amount (e.g. 12GB)

%commandbox% [@lvextend -L12G /dev/myvg/homevol@]

  1. %item value=10% Extend logical volume to fill all free space on logical volume group

%commandbox% [@lvextend -l +100%FREE /dev/myvg/testlv@]

  1. %item value=11% Resize the underlying ext4 file system to the maximum of the new logical volume. Get the device name from df command

%commandbox% [@resize2fs /dev/mapper/VolGroup-lv_root@]