当我apt-get update
和apt-get upgrade
我的Ubuntu系统时,出现以下有关获取Google Chrome更新的错误消息。这只是几天前才开始发生的。
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.
该错误消息清楚地表明,这与{em> Google,Inc 到Google LLC 中的Google changing its name有关。该错误消息显示了问题所在,但没有告诉我们要运行什么命令来解决此问题。
如何按照消息提示明确接受此更改?
答案 0 :(得分:219)
运行:
$ sudo apt update
请注意,这是apt
,不是 apt-get
然后输入y
接受更改:
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
该错误将不再显示。您需要照常运行sudo apt-get update
和sudo apt-get upgrade
才能获取更新。
问题中指出,此错误消息旨在确保您从中获取Google Chrome更新的名为 Google LLC 的新实体与 Google,Inc.相同。 / strong>,表示您的系统信任并知道其签名。接受更改,即表示您要求系统信任 Google LLC ,并在将来接受来自该更新的Google Chrome更新。
答案 1 :(得分:5)
运行
apt-get update -y --allow-releaseinfo-change
即使在新版本的应用程序中其信息已更改,这也允许安装
答案 2 :(得分:2)
我不得不从Google https://www.google.com/linuxrepositories/下载密钥文件,并将其导入到软件源身份验证中。
重新运行Sudo Apt更新时,我可以选择回答问题
命中率:8 http://archive.ubuntu.com/ubuntu仿生更新InRelease
匹配:9 http://packages.linuxmint.com塔拉发行版
命中:10 http://archive.ubuntu.com/ubuntu仿生退货发布
E:存储库“ http://dl.google.com/linux/chrome/deb稳定版本” 从“ Google,Inc.”更改了“原始”值。到“ Google LLC” N:这 必须明确接受,然后才能对此存储库进行更新 应用。有关详细信息,请参见apt-secure(8)联机帮助页。你想接受吗 这些更改并继续从此存储库更新? [y / N] y Get:11 http://dl.google.com/linux/chrome/deb稳定/主要amd64 程序包[1,130 B]以4s(705 B / s)的速度获取了2,892 B
正在阅读包装清单...完成 建立依赖树 正在读取状态信息...完成 所有软件包都是最新的。
希望这对某人有帮助