E: Repository 'http://dl.google.com/linux/chrome/deb stable Release' changed its 'Origin' value from 'Google, Inc.' to 'Google LLC'

Google ChromeUbuntuApt GetApt

Google Chrome Problem Overview


When I apt-get update and apt-get upgrade my Ubuntu system, I get the following error message regarding fetching Google Chrome updates. This only started happening a few days ago.

E: Repository 'http://dl.google.com/linux/chrome/deb stable Release' changed its 'Origin' value from 'Google, Inc.' to 'Google LLC'
N: This must be accepted explicitly before updates for this repository can be applied. See apt-secure(8) manpage for details.

The error message clearly shows that this has to do with Google changing its name from Google, Inc to Google LLC. The error message shows what's wrong, but does not tell us what command to run to fix this problem.

How can I accept this change explicitly as the message says?

Google Chrome Solutions


Solution 1 - Google Chrome

Solution

Run:

$ sudo apt update

Note this is apt and not apt-get

Then enter y to accept the change:

E: Repository 'http://dl.google.com/linux/chrome/deb stable Release' changed its 'Origin' value from 'Google, Inc.' to 'Google LLC'
N: This must be accepted explicitly before updates for this repository can be applied. See apt-secure(8) manpage for details.
Do you want to accept these changes and continue updating from this repository? [y/N] y

The error will not show up again. You need to run sudo apt-get update and sudo apt-get upgrade as usual to get your updates.

Details

As pointed out in the question, this error message is meant to ensure that the new entity named Google LLC you are fetching Google Chrome updates from is the same as Google, Inc. that your system trusts and knows its signature. By accepting the change, you are asking your system to trust Google LLC and accept Google Chrome updates from it in the future.

Solution 2 - Google Chrome

Run

apt-get update -y --allow-releaseinfo-change

This allows installation even if in new release of the application its information changed

Solution 3 - Google Chrome

I had to download the key file from Google https://www.google.com/linuxrepositories/ and import it into the software sources authentication.

Upon re-running Sudo Apt Update I was given the option to respond to the question

> Hit:8 http://archive.ubuntu.com/ubuntu bionic-updates InRelease
> Hit:9 http://packages.linuxmint.com tara Release
> Hit:10 http://archive.ubuntu.com/ubuntu bionic-backports InRelease
> E: Repository 'http://dl.google.com/linux/chrome/deb stable Release' > changed its 'Origin' value from 'Google, Inc.' to 'Google LLC' N: This > must be accepted explicitly before updates for this repository can be > applied. See apt-secure(8) manpage for details. Do you want to accept > these changes and continue updating from this repository? [y/N] y > Get:11 http://dl.google.com/linux/chrome/deb stable/main amd64 > Packages [1,130 B] Fetched 2,892 B in 4s (705 B/s)
> Reading package lists... Done > Building dependency tree > Reading state information... Done > All packages are up-to-date.

Hope this helps somebody

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionSamView Question on Stackoverflow
Solution 1 - Google ChromeSamView Answer on Stackoverflow
Solution 2 - Google ChromeGanesh KarewadView Answer on Stackoverflow
Solution 3 - Google ChromeDerek BradshawView Answer on Stackoverflow