Core dump
From Just Solve the File Format Problem
(Difference between revisions)
(→Resources) |
(→Software: add <code>coredumpctl</code> for easier management of core dumps.) |
||
(One intermediate revision by one user not shown) | |||
Line 21: | Line 21: | ||
* [[GDB]] | * [[GDB]] | ||
+ | |||
+ | In modern [[Linux]] environments, those with [https://systemd.io/ <code>systemd</code>] in particular, core files can be centrally managed as a benefit. | ||
+ | |||
+ | * [https://github.com/systemd/systemd systemd] → <code>coredumpctl</code> | ||
== Resources == | == Resources == | ||
Line 27: | Line 31: | ||
[[Category:Sun]] | [[Category:Sun]] | ||
+ | [[Category:File formats with a distinctive filename]] |
Latest revision as of 01:23, 10 August 2025
A core dump file is the saved image of a program's memory state from a Unix-style OS, usually made when it crashes, so that a developer can debug it. The name refers to the days when computers used magnetic core memory for their RAM.
File names are usually just core
or start with a prefix of core.
, depending on system configuration.
Contents[hide] |
[edit] Format
Core files are often in a version or extension of the OS executable file format, such as ELF.
[edit] Specifications
- FreeBSD man pages: core(5)
- Linux man pages: core(5)
- Mac OS X man pages: core(5)
- Oracle Solaris 11.2 man pages: core(4)
[edit] Software
Core files are usually generated by the OS itself, and can be read by debugging tools for the system they were created on.
In modern Linux environments, those with systemd
in particular, core files can be centrally managed as a benefit.
- systemd →
coredumpctl