-1

我在 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

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

4

1 回答 1

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 然后调整大小。

于 2016-09-01T05:59:46.567 回答