LVM

Links For Fast Navigation
  1. How to delete a volume group in LVM

How to delete a volume group in LVM

The post describes steps to delete a volume group. Make sure you have unmounted and the mount points and taken prior backup of the mount point if required.

  1. Once you have umounted all the mount points, you can remove the LVs associated with them. To do so use the lvremove command :
$ lvremove -f [vg_name]/[lv_name]
  1. To remove the Volume group we have to deactivate it first with vgchange command :
$ vgchange -an [vg_name]
  1. You can remove the VG now.
$ vgremove [vg_name]
  1. To remove physical volumes in the VG use following command:
$ pvremove [pv_name]
Share this
Submit