![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Advanced & Expert Users Advanced UNIX and Linux questions go here. Expert-to-Expert. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Cleaning core files | ghost01 | UNIX for Dummies Questions & Answers | 3 | 01-11-2007 01:56 AM |
| system log files and core files? | Westy564 | UNIX for Dummies Questions & Answers | 8 | 02-04-2004 12:40 PM |
| Analyzing System Core Files? | TRUEST | UNIX for Advanced & Expert Users | 2 | 01-30-2003 09:10 AM |
| What can be done with core files??? | TRUEST | UNIX for Advanced & Expert Users | 5 | 12-06-2002 11:40 AM |
| core files | Vodor | UNIX for Dummies Questions & Answers | 2 | 06-12-2001 01:07 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
Does anyone know any tools or how to really get something out of a core file.
I can use strings and look for certain things like out of memory. I am trying to use adb but I can't make heads or tails from it. I guess it is my lack of know how with the adb/mdb debugger. anything would help. thanks |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
issue file core
This will give you brief idea of what application cause the core file. |
|
#3
|
|||
|
|||
|
thank you but I can 't see anything. did you post anything.
|
|
#4
|
|||
|
|||
|
gdb is freely avaiable for most *nix flavors.
If you want more information try compiling the code with -g, then running it inside gdb Code:
cc -g myfile.c -o myfile gdb myfile > r arg1 arg2 arg3 ............ ba Code:
gdb compiled_File_name core > ba |
|||
| Google The UNIX and Linux Forums |