Click to See Complete Forum and Search --> : Kernel oops: where's the corefile?


MBMarduk
09-27-2001, 12:24 AM
My 2.4.10 oopses on me repeatedly while doing 'dd if=/dev/scd0 of=file'.

Now, am I not supposed to get a corefile to go along with it?
Or am I really supposed to write all those addresses by hand every time?

Hyelp!
TIA, Mike

PLBlaze
09-27-2001, 02:34 AM
There's no core's dumped intead you lookup the oopsie numbers in /usr/src/linux/vmlinux. Better yet try to run ksymoops that will give more info and debug...without you retyping all of it :D .Hope this helps.

MBMarduk
09-27-2001, 01:13 PM
But '/usr/src/linux/vmlinux' is a binary!
I did a search for 'oops' but didn't get what I was looking for: data to send to the kernel developers.

What did you mean?

PLBlaze
09-27-2001, 02:16 PM
You have to use nm utility to extract the EIP values out of vmlinux then find the one from the oops...try this cd /usr/src/linux && nm vmlinux | sort | less .While at it, read the README,REPORTING-BUGS files in top dir of kernel.Hope this helps again.

MBMarduk
09-27-2001, 03:19 PM
Originally posted by Diffie:
<STRONG>While at it, read the README,REPORTING-BUGS </STRONG>

:o
My bad. I've read it before, HONESTLY! :)
Gotta read it again...it's been 6-8 months.
Never heard of 'nm' tho.