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 step2 from the volume group
# lvremove /dev/vgxx/lvolY
5,Determine if multiple physical volumes are associated with 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
阅读(2561) | 评论(0) | 转发(0) |