HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

lvremove — Remove logical volumes. See also: `lvm`. More information: <https://manned.org/lvremove>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandlogicalremoveclivolumeslvremoveseealso
linux

Problem

How to use the lvremove command: Remove logical volumes. See also: lvm. More information: <https://manned.org/lvremove>.

Solution

lvremove — Remove logical volumes. See also: lvm. More information: <https://manned.org/lvremove>.

Remove a logical volume in a volume group:
sudo lvremove {{volume_group}}/{{logical_volume}}


Remove all logical volumes in a volume group:
sudo lvremove {{volume_group}}

Code Snippets

Remove a logical volume in a volume group

sudo lvremove {{volume_group}}/{{logical_volume}}

Remove all logical volumes in a volume group

sudo lvremove {{volume_group}}

Context

tldr-pages: linux/lvremove

Revisions (0)

No revisions yet.