Home » Questions » Computers [ Ask a new question ]

How can I find out what makes Firefox segfault?

How can I find out what makes Firefox segfault?

Firefox has started segfaulting when using my default profile. If I run it in safe mode, it runs OK. So I know the segfault probably comes from an extension or from some custom setting. The problem is that I have a lot of these...

Asked by: Guest | Views: 320
Total answers/comments: 1
Guest [Entry]

"Use strace to watch system calls, it will show you what the program is trying to do just before crashing:

strace firefox

If you find nothing relevant (firefox trying to open some non-existent path, ...),start by doing a memtest and a file-system check. I lost hours because I was sure some problems were not hardware related, and they were.

Memtest86+ is a small utility available as a boot option on many systems and live-cds

A file system check is done by launching the following command when the aimed partition (sda1 using an ext3 file system here) is unmounted (for exemple from a live-cd):

e2fsck -cfvp /dev/sda1"