來源:http://blog.51cto.com/hujizhou/1841367
場景:
虛擬機中有2塊磁盤。
磁盤1:20G,默認安裝操作系統,操作系統創建默認的LVM。
磁盤2:50G,安裝完操作系統之后添加的,並手動創建了LVM。現需要將第2塊磁盤從50G擴大至80G。
步驟:
1、將第2塊磁盤在虛擬機設置中調整至80G
2、在linux系統中輸入pvresize -v /dev/sdb 擴展PV容量,擴展完后可以用pvdisplay命令查看擴展是否生效。
// pvresize還可以收縮PV空間大小,如下:
EXAMPLES
Expand the PV on /dev/sda1 after enlarging the partition with fdisk:
pvresize /dev/sda1
Shrink the PV on /dev/sda1 prior to shrinking the partition with fdisk (ensure that the PV size is appropriate for your intended new partition size):
pvresize --setphysicalvolumesize 40G /dev/sda1
3、先用lvs命令查看下當前PV下的LV容量是多少,以便於判斷操作后是否生效。
4、使用如下命令擴展LV
# lvextend -l +100%free /dev/testvg/testlv
5、再次使用lvs命令查看結果。
6、最后再用命令對文件系統更新容量。
resize2fs /dev/testvg/testlv



