1,Backup all user data in the volume to be removed(use fbackup, cpio or tar backup utilities as appropriate)
2,Determine the names of the logical volumes residing in the volume groups to be removed
# lvdisplay /dev/vgxx/lvol*
3,Unmount all logical volumes in the volume group to be removed
# cd /; umount /dev/vgxx/lvol*
4,Remove the logical volumes found in step 2 from the volume group.
# lvremove /dev/vgxx/lvolx
5,Determine if multiple physical volumes are assocaited with the volume group to be removed. This is indicated by the number of block device files listed for the volume group to be removed
# strings /etc/lvmtab
6,If more than one physical volume,REMOVE ALL BUT ONE of the physical volumes using the vgreduce command
# vgreduce /dev/vgxx /dev/dsk/cxtxdx
7,Now, remove the volume group
# vgremove /dev/vgxx
阅读(2496) | 评论(0) | 转发(0) |