Files
cheatsheet-tldr/tldr/linux/lvmdump
2025-12-22 00:22:43 +00:00

27 lines
578 B
Plaintext

---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# lvmdump
> Collect diagnostic information about LVM2 (Logical Volume Manager).
> By default, outputs a compressed `.tar` archive with system and configuration data in the home directory.
> More information: <https://manned.org/lvmdump>.
- Generate a basic dump:
`lvmdump`
- Generate an extended dump with metadata and daemon info:
`lvmdump -a -l -m`
- Dump the information into a directory instead of a tarball:
`lvmdump -d {{path/to/directory}}`
- Display help:
`lvmdump -h`