mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
27 lines
627 B
Plaintext
27 lines
627 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# lvdisplay
|
|
|
|
> Display information about Logical Volume Manager (LVM) logical volumes.
|
|
> See also: `lvm`, `lvs`.
|
|
> More information: <https://manned.org/lvdisplay>.
|
|
|
|
- Display information about all logical volumes:
|
|
|
|
`sudo lvdisplay`
|
|
|
|
- Display the information in a short format (same as running `lvs`):
|
|
|
|
`sudo lvdisplay {{[-C|--columns]}}`
|
|
|
|
- Display information about all logical volumes in volume group vg1:
|
|
|
|
`sudo lvdisplay {{vg1}}`
|
|
|
|
- Display information about logical volume lv1 in volume group vg1:
|
|
|
|
`sudo lvdisplay {{vg1/lv1}}`
|