CentOS7 LVM新增硬碟及擴容
阿新 • • 發佈:2019-02-06
一、LVM簡介
LVM是 Logical Volume Manager(邏輯卷管理)的簡寫,它是Linux環境下對磁碟分割槽進行管理的一種機制。LVM將一個或多個磁碟分割槽(PV)虛擬為一個卷組(VG),相當於一個大的硬碟,我們可以在上面劃分一些邏輯卷(LV)。當卷組的空間不夠使用時,可以將新的磁碟分割槽加入進來。我們還可以從卷組剩餘空間上劃分一些空間給空間不夠用的邏輯卷使用。
1 |
shell # fdisk -l
|
1 2 |
shell # fdisk /dev/vdb
shell # partprobe
|
1 2 |
shell # pvcreate /dev/vdb1
shell # pvdisplay
|
1 |
shell # vgdisplay
|
1 |
shell # vgextend centos /dev/vdb1
|
1 2 |
shell # lvcreate -L 4G -n newlv centos
shell # lvdisplay
|
1 |
shell # mkfs.xfs /dev/centos/newlv
|
1 2 |
shell # mount -t xfs /dev/centos/newlv /mnt/
shell # df -Th
|
1 |
/dev/centos/newlv /mnt xfs defaults 1 2
|
1 |
shell # lvextend -l +100%FREE /dev/centos/newlv
|
1 |
shell # xfs_growfs /dev/centos/newlv
|