Can't update Google Chrome

I updated Google Chrome from the Software Updater in Ubuntu 12.04, but it didn't actually update. "About Google Chrome " is still showing the previous release.


Solution 1:

If you would like to keep you browser up to date, I think the easiest thing to do is to add the PPA. I will explain how to do this for both Chrome and Chromium. These two browsers are mostly the same, but you can check out the differences here.

Chrome

First you have to install the key. This can be done by opening Terminal and typing

wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -

Step two is to add the repository

sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'

Then you update and, if you haven't already, install Google Chrome

sudo apt-get update
sudo apt-get install google-chrome-stable

Chromium

Chromium is more straight forward. Just add the PPA, update, and install by typing this in Terminal:

sudo add-apt-repository ppa:a-v-shkop/chromium
sudo apt-get update
sudo apt-get install chromium-browser

Solution 2:

I had the same problem for Ubuntu 14 (end of 2015!): Chrome refused to update although all the required updates were done. The reason seems to be that there's still some background processes running even though Chrome is closed.

Close Chrome and just look up all "chrome" entries in 'top' and do 'kill 12345' where 12345 is the PID of each 'chrome' process. Then start the browser.