Original von bernieb
Unfortunately, the browser does not crash, so not crash handler with a trace comes up. Is there anything else I can do to get more debuging info?
If you have emerged
gdb you can receive a backtrace with the following steps: first, you determe the pid of the konqueror process. This can be done with
pidof konqueror or
top (if and only if konqueror uses all CPU).
After that, start gdb on the following manner (assuming that the pid is ${pid}):
[code:1]$ gdb
(gdb) attach ${pid}[/code:1]Konqueror is now interupted. You can get a backtrace with[code:1](gdb) bt[/code:1]
If you want another backtrace (if a program freezes, it can loop through several functions, and thus have several backtraces), continu it with[code:1](gdb) cont[/code:1], and interupt it with
Ctrl+C. A (new) backtrace is now available with
bt
Problem with Gentoo in this kind of cases (I use it myself), is that the code is optimized by gcc. That means that the backtrace could be not usefull. This kind of errors can be caused by too high optimalisations.