101

How to update Google chrome in Ubuntu?

OscarRyz
  • 4,071
  • 10
  • 39
  • 63

5 Answers5

120

First download and install the key from Google Linux Repository. Or run the following commands in the terminal, type the password for the user when prompted.

wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'
sudo apt-get update

To install:

sudo apt-get install google-chrome-beta

To update only:

sudo apt-get --only-upgrade install google-chrome-stable

Then update (if available) the Network Security Service libraries (libnss), or Chrome will behave weird

sudo apt-get install libnss3-1d

In Ubuntu 18.04 or later libnss3-1d - Network Security Service libraries - transitional package is depreciated and incorporated in generic libnss3 library. (Thanks Bishoy Melek)

sudo apt-get install libnss3

Now you have to kill all instances (may be hidden) of old Google Chrome.

sudo pkill -15 google-chrome
sudo pkill -15 chrome

Then start google-chrome as you start it.

ghosh'.
  • 1,325
  • 1
  • 8
  • 7
  • 4
    Thanks. `killall google-chrome` works well also. – Fedir RYKHTIK Sep 26 '13 at 09:53
  • 1
    Says `google-chrome-stable is in the latest version available`. But I'm on Chrome 30.0.1599.101 and apparently version 32 exists now. Is the debian package regularly updated as well? – Augustin Riedinger Jan 30 '14 at 11:44
  • No, Debian packages are NOT regularly updated. And this depends on your Ubuntu version. – ghosh'. Feb 01 '14 at 09:41
  • 1
    There is a simpler way to restart Chrome. Just open this link - chrome://restart . Source - https://plus.google.com/+FrancoisBeaufort/posts/VVv36sA79Mu. – Ilia Barahovsky Apr 17 '16 at 07:12
  • @IliaBarahovski .. Yeah. You can. But I'll prefer the bash line approach, it's the unix way of life :) – ghosh'. Apr 18 '16 at 10:14
  • worked for me Ubuntu 14.10 {[9303:9339:0915/095009.401468:FATAL:nss_util.cc(632)] NSS_VersionCheck("3.26") failed. NSS >= 3.26 is required. Please upgrade to the latest NSS, and if you still get this error, contact your distribution maintainer.} – Vadim Sep 15 '17 at 07:01
  • sudo pkill -15 google-chrome sudo pkill -15 chrome; Execute this command and then open chrome@AugustinRiedinger – Akash Bisariya Feb 08 '18 at 06:28
  • Not working in my case. I have ubuntu 18.04. And the version of google chrome is 70.0.3538.77-1. It's not getting upgraded following all these steps. Getting this E: Repository 'http://dl.google.com/linux/chrome/deb stable Release' changed its 'Origin' value from 'Google, Inc.' to 'Google LLC' when i did "sudo apt-get update" – Ashu Feb 23 '20 at 00:27
  • This worked https://linuxize.com/post/how-to-install-google-chrome-web-browser-on-ubuntu-18-04/ – Ashu Feb 23 '20 at 00:27
  • Why install `google-chrome-beta` instead of google-chrome-stable`? `libnss3` is installed as a dependency. – jarno Feb 23 '20 at 08:15
  • Worked as a charm – David Beauchemin May 26 '20 at 23:37
  • Is this outdated? – Dimitri Kopriwa Jun 09 '21 at 19:12
  • @dimitri-kopriwa I just used the `apt-key add... ` instructions to solve the problem of chrome not updating. All the other generic instructions I had gone through previously failed to get the job done. So I'd say that part is not outdated. But I didn't need anything else (eg libnss3). – moodboom Feb 04 '22 at 19:09
17

From the Chrome EULA page:

Note: Installing Google Chrome will add the Google repository so your system will automatically keep Google Chrome up to date. If you don't want Google's repository, do "sudo touch /etc/default/google-chrome" before installing the package.

[emphasis theirs]

So, as mgpyone indicated Ubuntu's update-manager should take care of that for you.

Here are the contents of my /etc/apt/sources.list.d/google-chrome.list

deb http://dl.google.com/linux/deb/ stable main
Dennis Williamson
  • 106,229
  • 19
  • 167
  • 187
6

If it does not update properly, just download the last .deb file from: https://www.google.com/chrome/browser/desktop/

The deb file like google-chrome-stable_current_amd64.deb

Then you can:

sudo dpkg -i /path/to/google-chrome-stable_current_amd64.deb

Replace /path/to with your proper path.

It just worked for me on Ubuntu 14.04

BntMrx
  • 161
  • 1
  • 1
3

From Google Chrome Help

Use your package manager to check for updates.

Privacy information

Google Chrome uses a process called Google Update to periodically check for updates. This process sends information, such as version number, language, operating system, and other installation or update-related details, back to Google servers. This information is not associated with you or your Google Account.

Ye Lin Aung
  • 5,650
  • 7
  • 32
  • 35
1

I had similar problem with broken package in Chrome 20.0.xxx. I could see two chrome packages in Synaptic package manager. I deleted the new version of chrome package then marked older version on chrome package for upgrade. Then upgrade all packages through, which took care of everything and my Chrome was upgraded to the latest version.