热门搜索 :
考研考公
您的当前位置:首页正文

修复 'Origin'值从'Google

来源:东饰资讯网

今天在执行 sudo apt-get update 出现了下面的错误提示:

E:  stable Release'将其'Origin'值从'Google, Inc.'修改到了'Google LLC'
N: 为了让这个仓库能够应用,这必须在更新之前显式接受。更多细节请参阅 apt-secure(8) 手册。

# 英语环境下的输出
E: Repository  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.

这个错误导致无法升级系统,错误说明了原因:是由于 Google ChromeOrigin 改变引起的,也给出了解决思路:手动接受这个改变。

所以修复这个错误就很容易了,只需执行:

sudo apt update

执行后会看到下面的提示:

E:  stable Release'将其'Origin'值从'Google, Inc.'修改到了'Google LLC'
N: 为了让这个仓库能够应用,这必须在更新之前显式接受。更多细节请参阅 apt-secure(8) 手册。
您是否愿意接受这些更改,并且继续从此仓库更新? [y/N] y

# 英语环境下的输出
E: Repository  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

此时输入 y 接受就可解决问题。

Top