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,264
  • 56
  • 94
  • 147
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,587
  • As you’re a reputation 11 user: if this answers your question, don’t forget to click the grey ☑ under the “0” at the left of this text to accept it, which means “yes, this answer is valid”! – David Foerster Jul 28 '16 at 09:54
  • I haven't tried this yet, I am affraid of deleting a file which I do not know what is it for... – BCArg Jul 28 '16 at 10:08
  • @BCArg You can try renaming the directory to something else instead of deleting it: mv ~/.gtkrc-2.0 ~/.gtkrc-2.0.bak. – edwinksl Jul 28 '16 at 10:56
  • I installed Chromium instead and will leave like that, it is exactly like Chrome – BCArg Jul 28 '16 at 11:08
  • @BCArg: Are you saying that the issue is not present in Chromium? – Gunnar Hjalmarsson Jul 29 '16 at 03:16
  • That's right, Chromium is running absolutely fine. – BCArg Jul 29 '16 at 08:18
  • Did work for me. After renaming the file, tried to start /usr/bin/google-chrome. It gave permission issue with ~/.config/google-chrome folder. That folder was owned by root. After changing the ownership, chrome started fine. – Reddy Aug 03 '16 at 07:03
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!