Ubuntu – Google Chrome is not starting

16.04google-chrome

I've just installed Ubuntu 16.04 LTS on dual boot. I've looked for many solutions and tried them all but Chrome never starts; the logo appears on the left but no window opens.

I downloaded the deb file on google chrome website and installed it through Ubuntu Software, but it doesn't start.

I have tried installing it through the command line with

sudo dpkg -i --force-depends google-chrome-stable_current_amd64.deb
sudo apt-get install -f

I have checked with uname -a and my system is 64 bit. I have also tried gdebi with the same result.

My repository universe is up to date.

I only have one display in settings>displays> so I can't turn off built-in display nor check the mirror display (I read it could be the problem as I also have a graphic card but it seems it is not in my case).

Here is what I get in the command line when I try to run Chrome from it ( the message is the same, whatever the method I used to install Chrome):

~$ google-chrome
[11831:11831:1122/114854.195473:ERROR:process_singleton_posix.cc(433)] readlink failed: Permission denied (13)
[11831:11831:1122/114854.195493:ERROR:process_singleton_posix.cc(256)] readlink(/home/basil/.config/google-chrome/SingletonLock) failed: Permission denied (13)
[11831:11831:1122/114854.195508:ERROR:process_singleton_posix.cc(256)] readlink(/home/basil/.config/google-chrome/SingletonLock) failed: Permission denied (13)
[11831:11831:1122/114854.195515:ERROR:process_singleton_posix.cc(280)] Failed to create /home/basil/.config/google-chrome/SingletonLock: Permission denied (13)
[11831:11831:1122/114854.195538:ERROR:process_singleton_posix.cc(433)] readlink failed: Permission denied (13)
[11831:11831:1122/114854.195564:ERROR:process_singleton_posix.cc(256)] readlink(/home/basil/.config/google-chrome/SingletonLock) failed: Permission denied (13)
[11831:11831:1122/114854.195622:ERROR:chrome_browser_main.cc(1498)] Failed to create a ProcessSingleton for your profile directory. This means that running multiple instances would start multiple browser processes rather than opening a new window in the existing process. Aborting now to avoid profile corruption.
[11831:11868:1122/114854.209297:ERROR:browser_gpu_channel_host_factory.cc(108)] Failed to launch GPU process.

Any new approach will be much appreciated

Best Answer

The error message says that you have no permission to access /home/basil/.config/google-chrome/SingletonLock, which probably means it isn't owned by you. This is probably due to running Chrome as root (using sudo), which shouldn't be done.

Try sudo rm -r /home/basil/.config/google-chrome/ to remove Chrome's configuration files for your user.