When I upgraded to Firefox 10 on Ubuntu 10.04, it kept crashing. After some research, the problem seems to be an issue with the Firefox profiles. The simple fix is to just create a new profile.
To do this, open a terminal and type ‘firefox -p’. This will start Firefox with a prompt to edit the profiles. Simply create a new profile and and set it to default.
This new profile will contain none of the Firefox history, saved passwords, etc.
I really only needed the the saved passwords. To copy these, open a terminal and type ‘cd ~/.mozilla/firefox’. There should be some folders, likely two with a name like ‘as9asd7.default’. The folder with the ‘random_characters.default’ is the original profile, and the with the ‘random_characters.new_profile_name’ is the new default Firefox profile. navigate to the ’random_characters.new_profile_name’ folder and type ‘mv key3.db key3.db` and ‘mv signons.sqlite signons.sqlite.orig’ to back up the original new profile password data. Then type ‘cp ../random_characters.default/keys3.db keys3.db’ and ‘cp ../random_characters.default/signons.sqlite signons.sqlite’ to move the old passwords and sign ons to the new profiles.