mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-30 08:41:35 +00:00
23 lines
513 B
Plaintext
23 lines
513 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`.
|
|
> More information: <https://manned.org/lvdisplay>.
|
|
|
|
- Display information about all logical volumes:
|
|
|
|
`sudo lvdisplay`
|
|
|
|
- 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}}`
|