Update cheatsheets

This commit is contained in:
ivuorinen
2025-09-09 00:19:24 +00:00
parent ad2dc48e1b
commit fbe9a1abf2
6 changed files with 92 additions and 3 deletions

26
tldr/linux/lvscan Normal file
View File

@@ -0,0 +1,26 @@
---
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`