See detailed LVM logical volume metadata quickly and act with confidence. 27.06.2026 | reading time: 2 min Want to verify what a logical volume actually contains and how it is mapped? `lvdisplay` reports the metadata and status for LVM logical volumes so you can check size, allocation, UUID and availability before you change anything. Hands-on example Try this on a test system: run `sudo lvdisplay` to list all logical volumes, or focus on one LV with `sudo lvdisplay /dev/vg0/root`; example output looks like this: ``` $ sudo lvdisplay /dev/vg0/root --- Logical volume --- LV Path /dev/vg0/root LV Name root VG Name vg0 LV UUID 3k4xYz-AB12-34cd-Ef56-7890ghIJKLmn LV Write Access read/write LV Status available # open 1 LV Size 20.00 GiB Current LE 5120 Segments 1 Allocation inherit Read ahead sectors auto ``` Use the path to target a specific LV when you need precise details. What the output tells you Read the key fields: `LV Path` is the device node, `VG Name` ties the LV to its volume group, `LV Size` is its allocated size and `# open` shows how many processes have it open; check `Segments` and `Allocation` to understand layout and whether the LV is thin or mirrored. Practical tips and tricky cases Specify the full device path to avoid ambiguity and combine `lvdisplay` with `grep` to find a name quickly; use it before resizing, before removing a volume and when investigating space disappearing after snapshots, and remember that lvdisplay reflects LVM metadata, not filesystem-level usage inside the LV. Tools that work well with lvdisplay Complement `lvdisplay` with commands that show other LVM layers: `pvs` to view physical volumes, `vgs` to inspect volume groups and `lvs` for concise LV summaries and columns tailored to scripting. Next steps Practice on a nonproduction VM: create a small VG and a test LV, run `lvdisplay` and compare the output to `lvs` and `pvs` so the fields become familiar; deepen your skills and consider official certification paths like CompTIA Linux+ or LPIC-1, and use bitsandbytes.academy for focused exam preparation. Join Bits & Bytes Academy First class LINUX exam preparation. storage filesystem utilities troubleshooting