5.3.7. 从卷组中删除物理卷
To remove unused physical volumes from a volume group, use the
vgreduce command. The vgreduce command shrinks a volume group's capacity by removing one or more empty physical volumes. This frees those physical volumes to be used in different volume groups or to be removed from the system.
在您从卷组中删除物理卷之前,您可以使用
pvdisplay 命令确定物理卷没有被任何逻辑卷使用。
If the physical volume is still being used you will have to migrate the data to another physical volume using the
pvmove command. Then use the vgreduce command to remove the physical volume.
The following command removes the physical volume
/dev/hda1 from the volume group my_volume_group.
vgreduce my_volume_group /dev/hda1
# vgreduce my_volume_group /dev/hda1
If a logical volume contains a physical volume that fails, you cannot use that logical volume. To remove missing physical volumes from a volume group, you can use the
--removemissing parameter of the vgreduce command, if there are no logical volumes that are allocated on the missing physical volumes.