diff options
author | Lennart Poettering <lennart@poettering.net> | 2017-03-01 14:37:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-01 14:37:15 +0100 |
commit | ecadd9b3fd394fd5fdef87cf9f1fb764b0bb83f0 (patch) | |
tree | 677e04403d44556906c68ae8ceb154dcffff37b7 /man | |
parent | 92d6f2f34895a5f126493a2fd7ff8fb660a84a22 (diff) | |
parent | eb5877a024a6da2177bf309a97ebd3e0641d7f2c (diff) |
Merge pull request #5458 from keszybz/coredump
Fix for coredump crash
Diffstat (limited to 'man')
-rw-r--r-- | man/coredumpctl.xml | 63 |
1 files changed, 61 insertions, 2 deletions
diff --git a/man/coredumpctl.xml b/man/coredumpctl.xml index 5204db4073..ca8156f77c 100644 --- a/man/coredumpctl.xml +++ b/man/coredumpctl.xml @@ -138,6 +138,14 @@ </para></listitem> </varlistentry> + <varlistentry> + <term><option>-q</option></term> + <term><option>--quiet</option></term> + + <listitem><para>Suppresses info messages about lack + of access to journal files and possible in-flight coredumps. + </para></listitem> + </varlistentry> </variablelist> </refsect1> @@ -154,6 +162,57 @@ matching specified characteristics. If no command is specified, this is the implied default.</para> + <para>The output is designed to be human readable and contains list contains + a table with the following columns:</para> + <variablelist> + <varlistentry> + <term>TIME</term> + <listitem><para>The timestamp of the crash, as reported by the kernel.</para> + </listitem> + </varlistentry> + + <varlistentry> + <term>PID</term> + <listitem><para>The identifier of the process that crashed.</para> + </listitem> + </varlistentry> + + <varlistentry> + <term>UID</term> + <term>GID</term> + <listitem><para>The user and group identifiers of the process that crashed.</para> + </listitem> + </varlistentry> + + <varlistentry> + <term>SIGNAL</term> + <listitem><para>The signal that caused the process to crash, when applicable. + </para></listitem> + </varlistentry> + + <varlistentry> + <term>COREFILE</term> + <listitem><para>Information whether the coredump was stored, and whether + it is still accessible: <literal>none</literal> means the the core was + not stored, <literal>-</literal> means that it was not available (for + example because the process was not terminated by a signal), + <literal>present</literal> means that the core file is accessible by the + current user, <literal>journal</literal> means that the core was stored + in the <literal>journal</literal>, <literal>truncated</literal> is the + same as one of the previous two, but the core was too large and was not + stored in its entirety, <literal>error</literal> means that the core file + cannot be accessed, most likely because of insufficient permissions, and + <literal>missing</literal> means that the core was stored in a file, but + this file has since been removed.</para></listitem> + </varlistentry> + + <varlistentry> + <term>EXE</term> + <listitem><para>The full path to the executable. For backtraces of scripts + this is the name of the interpreter.</para></listitem> + </varlistentry> + </variablelist> + <para>It's worth noting that different restrictions apply to data saved in the journal and core dump files saved in <filename>/var/lib/systemd/coredump</filename>, see overview in @@ -223,9 +282,9 @@ <varlistentry> <term><replaceable>MATCH</replaceable></term> - <listitem><para>General journalctl predicates (see + <listitem><para>General journalctl predicate (see <citerefentry><refentrytitle>journalctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>). - Must contain an equal sign. </para></listitem> + Must contain an equals sign (<literal>=</literal>).</para></listitem> </varlistentry> </variablelist> </refsect1> |