Matthew Saltzman wrote:
> Wierd.  All of a sudden, linuxconf has started terminating with a
> segfault as soon as I start it up.

I usually do something like:
strace linuxconf 2>&1 | grep open
or:
ltrace linuxconf 2>&1
when programs crash.  Try the first one, it might help you out.

What you'll see is that the last thing a program does before it
segfaults is usually the cause of the segfault.  So, the last open()
that linuxconf does before it crashes should tell you what file it's
examining.  There's almost certainly something wrong with that file.

Let me know whether or not it helps  :)

MSG


-- 
To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe"
as the Subject.

Reply via email to