From 1ab2f8cf3d6074f5e97f51caf3473dea029b70bb Mon Sep 17 00:00:00 2001 From: "Jens C. Jensen" <1847332+jensecj@users.noreply.github.com> Date: Fri, 12 Mar 2021 13:13:22 +0000 Subject: [PATCH] coredumpctl: add page (#5421) --- pages/linux/coredumpctl.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/linux/coredumpctl.md diff --git a/pages/linux/coredumpctl.md b/pages/linux/coredumpctl.md new file mode 100644 index 000000000..bfe7a6254 --- /dev/null +++ b/pages/linux/coredumpctl.md @@ -0,0 +1,24 @@ +# coredumpctl + +> Retrieve and process saved core dumps and metadata. +> More information: . + +- 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}}`