Reputation: 39881
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
Reputation: 6124
you will need gdb
for this -- have a look here: http://linux.bytesex.org/gdb.html
Upvotes: 1
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