1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
|
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR Free Software Foundation, Inc.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2024-06-01 06:26+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. type: TH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "SYSTEMD-COREDUMP"
msgstr ""
#. type: TH
#: archlinux fedora-40 mageia-cauldron opensuse-tumbleweed
#, no-wrap
msgid "systemd 255"
msgstr ""
#. type: TH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "systemd-coredump"
msgstr ""
#. -----------------------------------------------------------------
#. * MAIN CONTENT STARTS HERE *
#. -----------------------------------------------------------------
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "NAME"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"systemd-coredump, systemd-coredump.socket, systemd-coredump@.service - "
"Acquire, save and process core dumps"
msgstr ""
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "SYNOPSIS"
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-leap-15-6 opensuse-tumbleweed
msgid "/usr/lib/systemd/systemd-coredump"
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-leap-15-6 opensuse-tumbleweed
msgid "/usr/lib/systemd/systemd-coredump B<--backtrace>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "systemd-coredump@\\&.service"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "systemd-coredump\\&.socket"
msgstr ""
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "DESCRIPTION"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"systemd-coredump@\\&.service is a system service to process core dumps\\&. "
"It will log a summary of the event to B<systemd-journald.service>(8), "
"including information about the process identifier, owner, the signal that "
"killed the process, and the stack trace if possible\\&. It may also save the "
"core dump for later processing\\&. See the \"Information about the crashed "
"process\" section below\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"The behavior of a specific program upon reception of a signal is governed by "
"a few factors which are described in detail in B<core>(5)\\&. In particular, "
"the core dump will only be processed when the related resource limits are "
"sufficient\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Core dumps can be written to the journal or saved as a file\\&. In both "
"cases, they can be retrieved for further processing, for example in "
"B<gdb>(1)\\&. See B<coredumpctl>(1), in particular the B<list> and B<debug> "
"verbs\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"By default, B<systemd-coredump> will log the core dump to the journal, "
"including a backtrace if possible, and store the core dump (an image of the "
"memory contents of the process) itself in an external file in /var/lib/"
"systemd/coredump\\&. These core dumps are deleted after a few days by "
"default; see /usr/lib/tmpfiles\\&.d/systemd\\&.conf for details\\&. Note "
"that the removal of core files from the file system and the purging of "
"journal entries are independent, and the core file may be present without "
"the journal entry, and journal entries may point to since-removed core "
"files\\&. Some metadata is attached to core files in the form of extended "
"attributes, so the core files are useful for some purposes even without the "
"full metadata available in the journal entry\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"For further details see \\m[blue]B<systemd Coredump "
"Handling>\\m[]\\&\\s-2\\u[1]\\d\\s+2\\&."
msgstr ""
#. type: SS
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "Invocation of systemd-coredump"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"The B<systemd-coredump> executable does the actual work\\&. It is invoked "
"twice: once as the handler by the kernel, and the second time in the systemd-"
"coredump@\\&.service to actually write the data to the journal and process "
"and save the core file\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"When the kernel invokes B<systemd-coredump> to handle a core dump, it runs "
"in privileged mode, and will connect to the socket created by the systemd-"
"coredump\\&.socket unit, which in turn will spawn an unprivileged systemd-"
"coredump@\\&.service instance to process the core dump\\&. Hence systemd-"
"coredump\\&.socket and systemd-coredump@\\&.service are helper units which "
"do the actual processing of core dumps and are subject to normal service "
"management\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"It is also possible to invoke B<systemd-coredump> with B<--backtrace> "
"option\\&. In this case, B<systemd-coredump> expects a journal entry in the "
"journal \\m[blue]B<Journal Export Format>\\m[]\\&\\s-2\\u[2]\\d\\s+2 on "
"standard input\\&. The entry should contain a I<MESSAGE=> field and any "
"additional metadata fields the caller deems reasonable\\&. B<systemd-"
"coredump> will append additional metadata fields in the same way it does for "
"core dumps received from the kernel\\&. In this mode, no core dump is stored "
"in the journal\\&."
msgstr ""
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "CONFIGURATION"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"For programs started by B<systemd>, process resource limits can be set by "
"directive I<LimitCORE=>, see B<systemd.exec>(5)\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"In order to be used by the kernel to handle core dumps, B<systemd-coredump> "
"must be configured in B<sysctl>(8) parameter I<kernel\\&.core_pattern>\\&. "
"The syntax of this parameter is explained in B<core>(5)\\&. systemd installs "
"the file /usr/lib/sysctl\\&.d/50-coredump\\&.conf which configures "
"I<kernel\\&.core_pattern> accordingly\\&. This file may be masked or "
"overridden to use a different setting following normal B<sysctl.d>(5) "
"rules\\&. If the sysctl configuration is modified, it must be updated in the "
"kernel before it takes effect, see B<sysctl>(8) and B<systemd-sysctl>(8)\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"In order to be used in the B<--backtrace> mode, an appropriate backtrace "
"handler must be installed on the sender side\\&. For example, in case of "
"B<python>(1), this means a I<sys\\&.excepthook> must be installed, see "
"\\m[blue]B<systemd-coredump-python>\\m[]\\&\\s-2\\u[3]\\d\\s+2\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"The behavior of B<systemd-coredump> itself is configured through the "
"configuration file /etc/systemd/coredump\\&.conf and corresponding snippets /"
"etc/systemd/coredump\\&.conf\\&.d/*\\&.conf, see B<coredump.conf>(5)\\&. A "
"new instance of B<systemd-coredump> is invoked upon receiving every core "
"dump\\&. Therefore, changes in these files will take effect the next time a "
"core dump is received\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Resources used by core dump files are restricted in two ways\\&. Parameters "
"like maximum size of acquired core dumps and files can be set in files /etc/"
"systemd/coredump\\&.conf and snippets mentioned above\\&. In addition the "
"storage time of core dump files is restricted by B<systemd-tmpfiles>, "
"corresponding settings are by default in /usr/lib/tmpfiles\\&.d/systemd\\&."
"conf\\&. The default is to delete core dumps after a few days; see the above "
"file for details\\&."
msgstr ""
#. type: SS
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "Disabling coredump processing"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"To disable potentially resource-intensive processing by B<systemd-coredump>, "
"set"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid ""
"Storage=none\n"
"ProcessSizeMax=0\n"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "in B<coredump.conf>(5)\\&."
msgstr ""
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "INFORMATION ABOUT THE CRASHED PROCESS"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"B<coredumpctl>(1) can be used to retrieve saved core dumps independently of "
"their location, to display information, and to process them e\\&.g\\&. by "
"passing to the GNU debugger (gdb)\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Data stored in the journal can be also viewed with B<journalctl>(1) as "
"usual (or from any other process, using the B<sd-journal>(3) API)\\&. The "
"relevant messages have B<MESSAGE_ID=fc2e22bc6ee647b6b90729ab34a250b1>:"
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid ""
"$ journalctl MESSAGE_ID=fc2e22bc6ee647b6b90729ab34a250b1 -o verbose\n"
"\\&...\n"
"MESSAGE_ID=fc2e22bc6ee647b6b90729ab34a250b1\n"
"COREDUMP_PID=552351\n"
"COREDUMP_UID=1000\n"
"COREDUMP_GID=1000\n"
"COREDUMP_SIGNAL_NAME=SIGSEGV\n"
"COREDUMP_SIGNAL=11\n"
"COREDUMP_TIMESTAMP=1614342930000000\n"
"COREDUMP_COMM=Web Content\n"
"COREDUMP_EXE=/usr/lib64/firefox/firefox\n"
"COREDUMP_USER_UNIT=app-gnome-firefox-552136\\&.scope\n"
"COREDUMP_CMDLINE=/usr/lib64/firefox/firefox -contentproc -childID 5 -isForBrowser \\&...\n"
"COREDUMP_CGROUP=/user\\&.slice/user-1000\\&.slice/user@1000\\&.service/app\\&.slice/app-\\&...\\&.scope\n"
"COREDUMP_FILENAME=/var/lib/systemd/coredump/core\\&.Web\\&...\\&.552351\\&.\\&...\\&.zst\n"
"\\&...\n"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "The following fields are saved (if known) with the journal entry"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "I<COREDUMP_UID=>, I<COREDUMP_PID=>, I<COREDUMP_GID=>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"The process number (PID), owner user number (UID), and group number (GID) of "
"the crashed process\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"When the crashed process was part of a container (or in a process or user "
"namespace in general), those are the values as seen I<outside>, in the "
"namespace where systemd-coredump is running\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "Added in version 248\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "I<COREDUMP_TIMESTAMP=>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"The time of the crash as reported by the kernel (in μs since the epoch)\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "I<COREDUMP_RLIMIT=>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "The core file size soft resource limit, see B<getrlimit>(2)\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "I<COREDUMP_UNIT=>, I<COREDUMP_SLICE=>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "The system unit and slice names\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"When the crashed process was in container, those are the units names "
"I<outside>, in the main system manager\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "I<COREDUMP_CGROUP=>"
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-leap-15-6 opensuse-tumbleweed
msgid "The primary cgroup of the unit of the crashed process\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"When the crashed process was in a container, this is the full path, as seen "
"outside of the container\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-leap-15-6 opensuse-tumbleweed
msgid "I<COREDUMP_PROC_CGROUP=>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Control group information in the format used in /proc/self/cgroup\\&. On "
"systems with the unified cgroup hierarchy, this is a single path prefixed "
"with \"0::\", and multiple paths prefixed with controller numbers on legacy "
"systems\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-leap-15-6 opensuse-tumbleweed
msgid "I<COREDUMP_OWNER_UID=>, I<COREDUMP_USER_UNIT=>, I<COREDUMP_SESSION=>"
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"The numerical UID of the user owning the login session or systemd user unit "
"of the crashed process, the user manager unit, and the session "
"identifier\\&. All three fields are only present for user processes\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"When the crashed process was in container, those are the values I<outside>, "
"in the main system\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "I<COREDUMP_SIGNAL_NAME=>, I<COREDUMP_SIGNAL=>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"The terminating signal name (with the \"SIG\" prefix \\&\\s-2\\u[4]\\d\\s+2) "
"and numerical value\\&. (Both are included because signal numbers vary by "
"architecture\\&.)"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "I<COREDUMP_CWD=>, I<COREDUMP_ROOT=>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"The current working directory and root directory of the crashed process\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"When the crashed process is in a container, those paths are relative to the "
"root of the container\\*(Aqs mount namespace\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "I<COREDUMP_OPEN_FDS=>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "Information about open file descriptors, in the following format:"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid ""
"I<fd>:I</path/to/file>\n"
"pos: \\&.\\&.\\&.\n"
"flags: \\&.\\&.\\&.\n"
"\\&.\\&.\\&.\n"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"The first line contains the file descriptor number I<fd> and the path, while "
"subsequent lines show the contents of /proc/I<pid>/fdinfo/I<fd>\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "I<COREDUMP_EXE=>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "The destination of the /proc/I<pid>/exe symlink\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"When the crashed process is in a container, that path is relative to the "
"root of the container\\*(Aqs mount namespace\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"I<COREDUMP_CMDLINE=>, I<COREDUMP_COMM=>, I<COREDUMP_ENVIRON=>, "
"I<COREDUMP_PROC_AUXV=>, I<COREDUMP_PROC_LIMITS=>, I<COREDUMP_PROC_MAPS=>, "
"I<COREDUMP_PROC_MOUNTINFO=>, I<COREDUMP_PROC_STATUS=>"
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Fields that map the per-process entries in the /proc/ filesystem: /proc/"
"I<pid>/cmdline (the command line of the crashed process), /proc/I<pid>/comm "
"(the command name associated with the process), /proc/I<pid>/environ (the "
"environment block of the crashed process), /proc/I<pid>/auxv (the auxiliary "
"vector of the crashed process, see B<getauxval>(3)), /proc/I<pid>/limits "
"(the soft and hard resource limits), /proc/I<pid>/maps (memory regions "
"visible to the process and their access permissions), /proc/I<pid>/mountinfo "
"(mount points in the process\\*(Aqs mount namespace), /proc/I<pid>/status "
"(various metadata about the process)\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "See B<proc>(5) for more information\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "I<COREDUMP_HOSTNAME=>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "The system hostname\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"When the crashed process was in container, this is the container hostname\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "I<COREDUMP_CONTAINER_CMDLINE=>"
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid ""
"For processes running in a container, the command line of the process "
"spawning the container (the first parent process with a different mount "
"namespace)\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "I<COREDUMP=>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "When the core is stored in the journal, the core image itself\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "I<COREDUMP_FILENAME=>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "When the core is stored externally, the path to the core file\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "I<COREDUMP_TRUNCATED=>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Set to \"1\" when the saved coredump was truncated\\&. (A partial core image "
"may still be processed by some tools, though obviously not all information "
"is available\\&.)"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"I<COREDUMP_PACKAGE_NAME=>, I<COREDUMP_PACKAGE_VERSION=>, "
"I<COREDUMP_PACKAGE_JSON=>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"If the executable contained \\&.package metadata ELF notes, they will be "
"parsed and attached\\&. The I<package> and I<packageVersion> of the "
"\\*(Aqmain\\*(Aq ELF module (ie: the executable) will be appended "
"individually\\&. The JSON-formatted content of all modules will be appended "
"as a single JSON object, each with the module name as the key\\&. For more "
"information about this metadata format and content, see \\m[blue]B<the "
"coredump metadata spec>\\m[]\\&\\s-2\\u[5]\\d\\s+2\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
msgid "Added in version 249\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "I<MESSAGE=>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"The message generated by B<systemd-coredump> that includes the backtrace if "
"it was successfully generated\\&. When B<systemd-coredump> is invoked with "
"B<--backtrace>, this field is provided by the caller\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Various other fields exist in the journal entry, but pertain to the logging "
"process, i\\&.e\\&. B<systemd-coredump>, not the crashed process\\&. See "
"B<systemd.journal-fields>(7)\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"The following fields are saved (if known) with the external file listed in "
"I<COREDUMP_FILENAME=> as extended attributes:"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"I<user\\&.coredump\\&.pid>, I<user\\&.coredump\\&.uid>, I<user\\&."
"coredump\\&.gid>, I<user\\&.coredump\\&.signal>, I<user\\&.coredump\\&."
"timestamp>, I<user\\&.coredump\\&.rlimit>, I<user\\&.coredump\\&.hostname>, "
"I<user\\&.coredump\\&.comm>, I<user\\&.coredump\\&.exe>"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Those are the same as I<COREDUMP_PID=>, I<COREDUMP_UID=>, I<COREDUMP_GID=>, "
"I<COREDUMP_SIGNAL=>, I<COREDUMP_TIMESTAMP=>, I<COREDUMP_RLIMIT=>, "
"I<COREDUMP_HOSTNAME=>, I<COREDUMP_COMM=>, and I<COREDUMP_EXE=>, described "
"above\\&."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Those can be viewed using B<getfattr>(1)\\&. For the core file described in "
"the journal entry shown above:"
msgstr ""
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid ""
"$ getfattr --absolute-names -d /var/lib/systemd/coredump/core\\&.Web\\&...\\&.552351\\&.\\&...\\&.zst\n"
"# file: /var/lib/systemd/coredump/core\\&.Web\\&...\\&.552351\\&.\\&...\\&.zst\n"
"user\\&.coredump\\&.pid=\"552351\"\n"
"user\\&.coredump\\&.uid=\"1000\"\n"
"user\\&.coredump\\&.gid=\"1000\"\n"
"user\\&.coredump\\&.signal=\"11\"\n"
"user\\&.coredump\\&.timestamp=\"1614342930000000\"\n"
"user\\&.coredump\\&.comm=\"Web Content\"\n"
"user\\&.coredump\\&.exe=\"/usr/lib64/firefox/firefox\"\n"
"\\&...\n"
msgstr ""
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "SEE ALSO"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"B<coredump.conf>(5), B<coredumpctl>(1), B<systemd-journald.service>(8), "
"B<systemd-tmpfiles>(8), B<core>(5), B<sysctl.d>(5), B<systemd-sysctl."
"service>(8), \\m[blue]B<systemd Coredump Handling>\\m[]\\&\\s-2\\u[1]\\d\\s+2"
msgstr ""
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "NOTES"
msgstr ""
#. type: IP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid " 1."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "systemd Coredump Handling"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "\\%https://systemd.io/COREDUMP"
msgstr ""
#. type: IP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid " 2."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "Journal Export Format"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "\\%https://systemd.io/JOURNAL_EXPORT_FORMATS#journal-export-format"
msgstr ""
#. type: IP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid " 3."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "systemd-coredump-python"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "\\%https://github.com/systemd/systemd-coredump-python"
msgstr ""
#. type: IP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid " 4."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"B<kill>(1) expects signal names I<without> the prefix; B<kill>(2) uses the "
"prefix; all systemd tools accept signal names both with and without the "
"prefix."
msgstr ""
#. type: IP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid " 5."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "the coredump metadata spec"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "\\%https://systemd.io/COREDUMP_PACKAGE_METADATA/"
msgstr ""
#. type: TH
#: debian-bookworm opensuse-leap-15-6
#, no-wrap
msgid "systemd 254"
msgstr ""
#. type: Plain text
#: debian-bookworm
msgid "/lib/systemd/systemd-coredump"
msgstr ""
#. type: Plain text
#: debian-bookworm
msgid "/lib/systemd/systemd-coredump B<--backtrace>"
msgstr ""
#. type: Plain text
#: debian-bookworm
#, no-wrap
msgid ""
"$ journalctl MESSAGE_ID=fc2e22bc6ee647b6b90729ab34a250b1 -o verbose\n"
"\\&...\n"
"MESSAGE_ID=fc2e22bc6ee647b6b90729ab34a250b1\n"
"COREDUMP_PID=552351\n"
"COREDUMP_UID=1000\n"
"COREDUMP_GID=1000\n"
"COREDUMP_SIGNAL_NAME=SIGSEGV\n"
"COREDUMP_SIGNAL=11\n"
"COREDUMP_TIMESTAMP=1614342930000000\n"
"COREDUMP_COMM=Web Content\n"
"COREDUMP_EXE=/lib64/firefox/firefox\n"
"COREDUMP_USER_UNIT=app-gnome-firefox-552136\\&.scope\n"
"COREDUMP_CMDLINE=/lib64/firefox/firefox -contentproc -childID 5 -isForBrowser \\&...\n"
"COREDUMP_CGROUP=/user\\&.slice/user-1000\\&.slice/user@1000\\&.service/app\\&.slice/app-\\&...\\&.scope\n"
"COREDUMP_FILENAME=/var/lib/systemd/coredump/core\\&.Web\\&...\\&.552351\\&.\\&...\\&.zst\n"
"\\&...\n"
msgstr ""
#. type: Plain text
#: debian-bookworm
msgid "I<COREDUMP_OWNER_UID=>, I<COREDUMP_USER_UNIT=>"
msgstr ""
#. type: Plain text
#: debian-bookworm
msgid ""
"The numerical UID of the user owning the login session or systemd user unit "
"of the crashed process, and the user manager unit\\&. Both fields are only "
"present for user processes\\&."
msgstr ""
#. type: Plain text
#: debian-bookworm
msgid ""
"I<COREDUMP_COMM=>, I<COREDUMP_PROC_STATUS=>, I<COREDUMP_PROC_MAPS=>, "
"I<COREDUMP_PROC_LIMITS=>, I<COREDUMP_PROC_MOUNTINFO=>, I<COREDUMP_ENVIRON=>"
msgstr ""
#. type: Plain text
#: debian-bookworm
msgid ""
"Fields that map the per-process entries in the /proc/ filesystem: /proc/"
"I<pid>/comm (the command name associated with the process), /proc/I<pid>/exe "
"(the filename of the executed command), /proc/I<pid>/status (various "
"metadata about the process), /proc/I<pid>/maps (memory regions visible to "
"the process and their access permissions), /proc/I<pid>/limits (the soft and "
"hard resource limits), /proc/I<pid>/mountinfo (mount points in the "
"process\\*(Aqs mount namespace), /proc/I<pid>/environ (the environment block "
"of the crashed process)\\&."
msgstr ""
#. type: Plain text
#: debian-bookworm opensuse-leap-15-6
msgid ""
"For processes running in a container, the commandline of the process "
"spawning the container (the first parent process with a different mount "
"namespace)\\&."
msgstr ""
#. type: Plain text
#: debian-bookworm
#, no-wrap
msgid ""
"$ getfattr --absolute-names -d /var/lib/systemd/coredump/core\\&.Web\\&...\\&.552351\\&.\\&...\\&.zst\n"
"# file: /var/lib/systemd/coredump/core\\&.Web\\&...\\&.552351\\&.\\&...\\&.zst\n"
"user\\&.coredump\\&.pid=\"552351\"\n"
"user\\&.coredump\\&.uid=\"1000\"\n"
"user\\&.coredump\\&.gid=\"1000\"\n"
"user\\&.coredump\\&.signal=\"11\"\n"
"user\\&.coredump\\&.timestamp=\"1614342930000000\"\n"
"user\\&.coredump\\&.comm=\"Web Content\"\n"
"user\\&.coredump\\&.exe=\"/lib64/firefox/firefox\"\n"
"\\&...\n"
msgstr ""
#. type: TH
#: debian-unstable fedora-rawhide
#, no-wrap
msgid "systemd 256~rc3"
msgstr ""
#. type: Plain text
#: opensuse-leap-15-6
msgid ""
"The numerical UID of the user owning the login session or systemd user unit "
"of the crashed process, the user manager unit, and the sesion identifier\\&. "
"All three fields are only present for user processes\\&."
msgstr ""
|