1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-28 11:19:46 +01:00
tldr/pages/linux/coredumpctl.md
2021-03-12 08:13:22 -05:00

589 B

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}}