Narek
Narek

Reputation: 39881

How to get info about crash from core file?

I have run a software and it crashed and left a core file. Now how I can read the info about crash by using core file?

Upvotes: 3

Views: 565

Answers (2)

Liv
Liv

Reputation: 6124

you will need gdb for this -- have a look here: http://linux.bytesex.org/gdb.html

Upvotes: 1

woliveirajr
woliveirajr

Reputation: 9483

You can use the

$ gdb /path/to/application /path/to/corefile

Take a look at the gdb manpage for more information...

In this site you can have some information too.

Upvotes: 2

Related Questions