5.4.3.4. 修改镜像卷配置
					You can increase or decrease the number of mirrors that a logical volume contains by using the 
lvconvert command. This allows you to convert a logical volume from a mirrored volume to a linear volume or from a linear volume to a mirrored volume. You can also use this command to reconfigure other mirror parameters of an existing logical volume, such as corelog.
				
					When you convert a linear volume to a mirrored volume, you are creating mirror legs for an existing volume. This means that your volume group must contain the devices and space for the mirror legs and for the mirror log.
				
					If you lose a leg of a mirror, LVM converts the volume to a linear volume so that you still have access to the volume, without the mirror redundancy. After you replace the leg, you can use the 
lvconvert command to restore the mirror. This procedure is provided in 第 7.3 节 “修复 LVM 镜像错误”.
				
					The following command converts the linear logical volume 
vg00/lvol1 to a mirrored logical volume.
				lvconvert -m1 vg00/lvol1
# lvconvert -m1 vg00/lvol1
					The following command converts the mirrored logical volume 
vg00/lvol1 to a linear logical volume, removing the mirror leg.
				lvconvert -m0 vg00/lvol1
# lvconvert -m0 vg00/lvol1
					The following example adds an additional mirror leg to the existing logical volume 
vg00/lvol1. This example shows the configuration of the volume before and after the lvconvert command changed the volume to a volume with two mirror legs.