mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 20:46:00 +02:00
coredumpctl: add page (#5421)
This commit is contained in:
parent
6755015544
commit
1ab2f8cf3d
1 changed files with 24 additions and 0 deletions
24
pages/linux/coredumpctl.md
Normal file
24
pages/linux/coredumpctl.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# coredumpctl
|
||||
|
||||
> Retrieve and process saved core dumps and metadata.
|
||||
> More information: <https://www.freedesktop.org/software/systemd/man/coredumpctl.html>.
|
||||
|
||||
- List all captured core dumps:
|
||||
|
||||
`coredumpctl list`
|
||||
|
||||
- List captured core dumps for a program:
|
||||
|
||||
`coredumpctl list {{program}}`
|
||||
|
||||
- Show information about the core dumps matching a program with `PID`:
|
||||
|
||||
`coredumpctl info {{PID}}`
|
||||
|
||||
- Invoke debugger using the last core dump of a program:
|
||||
|
||||
`coredumpctl debug {{program}}`
|
||||
|
||||
- Extract the last core dump of a program to a file:
|
||||
|
||||
`coredumpctl --output={{path/to/file}} dump {{program}}`
|
Loading…
Add table
Reference in a new issue