mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-02 23:43:09 +00:00
27 lines
578 B
Plaintext
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`
|