将未分配的可用空间添加到LVM

时间:2016-08-17 20:39:14

标签: vmware lvm

我在VMware下向主磁盘添加了5 GB。我可以看到5GB免费:

Number  Start   End     Size    Type      File system  Flags
    32.3kB  1049kB  1016kB            Free Space
 1      1049kB  256MB   255MB   primary   ext2         boot
        256MB   257MB   1048kB            Free Space
 2      257MB   215GB   214GB   extended
 5      257MB   215GB   214GB   logical                lvm
        215GB   220GB   5370MB            Free Space

如何将此可用空间添加到我的群组卷?我需要先创建一个新分区吗?

1 个答案:

答案 0 :(得分:0)

是的,您需要先创建一个分区,然后更改LVM的分区系统ID(代码8e)。

示例:

fdisk /dev/sdb #Assuming this is the disk you added
press "n" #to create a new partition and following along.
press "t" #change the partition's system id to "8e"
press "w" #to write the changes

#Create PV.
pvcreate /dev/sdb1
#Add PV to the Volume Group
vgextend <VolumeGroup> /dev/sdb1
#Extend the logical volume
lvextend -l +100%FREE /dev/VolumeGroup/yourLV

确保伸展时未安装LV。运行“lvdisplay”以确保扩展逻辑卷。

注意:如果文件系统没有扩展,您可以尝试重新启动计算机或执行fsck然后调整大小。