4

My Google Chrome stopped working mysteriously. When I run it from a terminal I get:

$ google-chrome-stable
Aborted (core dumped)

I installed google chrome via de Debian package and I am running a 64-bit machine.

David Foerster
  • 36,890
  • 56
  • 97
  • 151
BCArg
  • 427

3 Answers3

7

I had the same issue and someone advised me to remove ~/.gtkrc-2.0 which did fix it for me. No idea why though.

Peter Smit
  • 7,707
1

I had the same problem for both chromium and chrome. I just removed their respective config directories:

  • for chromium

    rm -rf ~/.config/chromium*

  • for chrome

    rm -rf ~/.config/google-chrome

and everything worked again.

Olivier
  • 111
1

A lot of people have said that removing ~/.gtkrc-2.0 would do the trick. I had the same problem but I had no such file! Uninstalling and installing chrome also doesn't help.

Turns out, when Chrome crashes sometimes the User Data Directory can get corrupted. So to fix it I did the following:

  1. Uninstall chrome apt-get purge google-chrome-stable
  2. Install chrome http://chrome.google.com
  3. Remove the cache and configuration folders. rm -rf /home/<<your username>>/.config/google-chrome/ and rm -rf /home/<<your username>>/.cache/google-chrome/
  4. Start Chrome and enjoy!