如何在“Origin”值更改后更新Google Chrome 70?

我使用的是Google Chrome版本70.0.3538.77(官方版本)(64位)。
今天,在运行了sudo apt update和sudo apt full-upgrade之后,我看到了:
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.

我看了一下apt-secure的man页面,但是对我来说,它太技术性和难以理解了。
那么,我该如何解决这个问题呢?
编辑:目前,我已从软件源中删除了现有的Google Chrome ppa,并成功运行了sudo apt updatesudo apt full-upgrade命令,以下内容已成功安装/升级:
The following NEW packages will be installed:
  python3-netifaces
The following packages will be upgraded:
  netplan.io nplan ppp
3 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
2个回答

这个问题已经存在了一段时间

错误信息清楚地表明这与Google将其名称从Google,Inc更改为Google LLC有关。 错误消息显示了问题在哪里,但没有告诉我们要运行什么命令来解决这个问题。

我应该如何显式接受这个更改,正如消息所说的那样?

正如2018年6月链接的问题中所述,问题与chrome-remote-desktop有关,解决方案只是运行sudo apt update并在提示时回答y

当我只运行sudo apt update而没有将其与sudo apt upgrade链接在一起时,我看到的就是这个:

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:8 http://dl.google.com/linux/chrome/deb stable/main amd64 Packages [1,130 B]                                                    

只需运行sudo apt update即可出现[y/N]提示。

36sudo apt-get update更改为sudo apt update对我来说解决了问题。 - sdexp
1@sdexp 如果能以回答的形式呈现,那将非常有帮助,因为在评论中可能会被忽视。 - Wolverine

对于使用Ansible或类似工具来处理多个主机上的此提示的任何人,以下是我发现对我有效的方法。
在交互环境中,apt -y update可以正常工作,但我无法在Ansible的即席环境中使其正常工作。我尝试了各种组合的选项和force-yes选项,但似乎都不起作用。
可能有更好的方法,但这是似乎能够在所有主机上接受更改的命令。
apt-get update -y --allow-releaseinfo-change