mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-02 11:43:00 +00:00
27 lines
478 B
Plaintext
27 lines
478 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# lvscan
|
|
|
|
> Scan (list) all logical volumes in the system.
|
|
> Part of the LVM (Logical Volume Manager) suite.
|
|
> More information: <https://manned.org/lvscan>.
|
|
|
|
- List all logical volumes:
|
|
|
|
`lvscan`
|
|
|
|
- List only active logical volumes:
|
|
|
|
`lvscan --active`
|
|
|
|
- List only inactive logical volumes:
|
|
|
|
`lvscan --inactive`
|
|
|
|
- Display logical volumes in JSON format:
|
|
|
|
`lvscan --reportformat json`
|