Advertisements
First make the /dev/sde3 to a physical volume using the following command.
#pvcreate /dev/sde3
verify it using the command.
#pvs
add the newly created physical volume to the Volume group.
#vgextend vg_name /dev/sde3
Now move the /dev/sda3 to /dev/sde3
#pvmove /dev/sda3 /dev/sde3
After completing the move, you can remove the /dev/sda3 from the VG.
#vgreduce vg_name /dev/sda3
Now we can remove the physical volume itself
#pvremove /dev/sda3
You can check the vg status using following commands.
#vgs
#pvs
#lvs
No comments:
Post a Comment
Be nice. That's all.