From: Roger B. <ro...@ro...> - 2003-10-24 22:38:19
|
> I go through the screens, get to the point of starting the install > and then umlbuilder_gui Segment faults on me. Any ideas on how > I can enable more information on what/why it's Seg Faulting on > me? Turn on core dumps: $ ulimit -c unlimited Find out the binary causing the core dump: $ file core (It should be python). Look at it in the debugger $ gdb /usr/bin/python core Get a backtrace: (gdb) bt Roger |