How to know which core dump belongs to which instance of exe? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to know which core dump belongs to which instance of exe?

Suppose we have 4-5 instances running of one exe and in case if core dump is created. Then, How we could know like the particular core dump file belongs to which instance of exe?

4th Oct 2021, 6:26 PM
Amit chavare
Amit chavare - avatar
1 Answer
0
Each core dump is associated with the PID of the process in question, so that's one way. $ coredumpctl list Lists available core dumps $ coredumpctl info <PID> Displays extended information about it.
6th Feb 2022, 10:24 PM
Isho
Isho - avatar