Ubuntu 18.04 更新问题

Ubuntu 18.04 更新问题

每次我尝试sudo apt-get update或时sudo apt update,系统都会返回以下错误:

Hit:1 http://ppa.launchpad.net/marutter/rrutter/ubuntu bionic InRelease
Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease                
Ign:3 http://dl.google.com/linux/chrome/deb stable InRelease           
Hit:4 http://cran.rstudio.com/bin/linux/ubuntu xenial/ InRelease       
Get:5 http://dl.google.com/linux/chrome/deb stable Release [943 B]     
Hit:6 http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu bionic InRelease
Get:7 http://dl.google.com/linux/chrome/deb stable Release.gpg [819 B] 
Hit:8 https://download.sublimetext.com apt/stable/ InRelease           
Ign:7 http://dl.google.com/linux/chrome/deb stable Release.gpg
Reading package lists... Done
W: GPG error: http://dl.google.com/linux/chrome/deb stable Release: The following signatures were invalid: EXPKEYSIG 1397BC53640DB551 Google Inc. (Linux Packages Signing Authority) <[email protected]>
E: The repository 'http://dl.google.com/linux/chrome/deb stable Release' is not signed.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.

有人能帮我指出解决这个问题的正确方法吗?问候

答案1

我今天也遇到了同样的情况。

以下是您需要做的:

  1. 下载:https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb

(chrome 新版本,您可以通过谷歌搜索 chrome 自行获取)

  1. 关闭 Chrome。
  2. 打开“软件和来源”,转到“来源”选项卡
  3. 删除(或禁用,如果您希望稍后重新启用)Google 源(输入您的密码)并关闭窗口
  4. 允许“软件和来源”重新加载来源
  5. 进入软件中心,转到“已安装”
  6. 找到 Chrome,并将其卸载。
  7. 关闭软件和来源
  8. 打开终端,输入:

    sudo apt update && sudo apt autoremove -y && sudo apt autoclean && sudo apt full-upgrade -y

  9. 关闭终端并转到下载文件夹,然后双击文件“google-chrome-stable_current_amd64.deb”(这将打开软件中心)

  10. 单击“安装”

您现在可以重新打开 chrome。您的所有标签页和已保存的密码等仍然在那里。

相关内容