To report all logical volume
# lvs --all
To shows the information of all logical volumes
# lvdisplay
To display information of a specific logical volume
# lvdisplay /path/to/lv
To display output in columns
# lvdisplay -C
To display the mapping of logical extents to physical volumes and physical extents.
# lvdisplay --maps
To display all the information
# lvdisplay -a
To remove the logical volume
# lvremove path/to/lv
To forcefully remove active logical volumes
# lvremove -f /path/to/lv
regards,
T.Dhanasekar