On Wed, Jun 7, 2023 at 12:51 PM Gabriel Huerta Araujo
<[email protected]> wrote:
>
> > If you can find the coredump file and do the backtrace on that file, that 
> > would be helpful, so we can see where the segfault is actually happening.
>
> > These files which are their file extensión?
>
>
> I tried to identify segfault (core files) and I did not find them
>
> for i in `find / -name core -print 2>/dev/null`
> do
>     file $i | grep "core file" >/dev/null
>     if [ $? -eq 0 ]; then
>            file $i
>     fi

Usually they're "core.<PID>", so you may want to search for "-name core.\*".

-Nick

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to