LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Finding process id of last crashed process (https://www.linuxquestions.org/questions/linux-newbie-8/finding-process-id-of-last-crashed-process-704978/)

santoshbr4 02-16-2009 03:13 AM

Finding process id of last crashed process
 
Hi All,

I want to know the method to find out the pid of the last crashed process. I tried using ps -aux which shows the last dead process as defunct but it goes off immediately after a short interval of time. So is there any method which gets me the pid of last crashed process even after a long time the process has died.

Thanks in advance.
Regards,
Santosh

clvic 02-16-2009 08:06 AM

Well, when a process crashes it is removed from the process table, and that is why you can't find it by using "ps".
If you enable core dump generation, (ulimit -c <number>) you'll find that when a process crashes, a file containing information about the crashed process is put in its running folder. This file is named core.<pid> and retains some usefule information. Problem: this is not exactly what you need as there's not a functionality to find all recent crashed pids. Anyway, if you're analysing your own application, this can be of some help


All times are GMT -5. The time now is 01:05 PM.