如何在 Ubuntu 20.04 中更新 Chrome

如何在 Ubuntu 20.04 中更新 Chrome

在 Ubuntu 20.04 上更新 chrome 的正确方法是什么。我的安装是用 .deb 文件进行的

我现在开始在 Chrome 上收到更新 Chrome 警告消息。我不想卸载然后重新安装以保存我的书签和已保存的凭据。

对于这种情况,Google Sync 是一个安全的选择吗?

答案1

当通过 .deb 文件完成安装时,有以下几种在 Ubuntu 20.04 上更新 Google Chrome 的方法:

  1. 打开软件更新程序。选择并安装可用的 Google Chrome 更新。
  2. 通过终端。输入sudo apt-get update然后sudo apt-get --only-upgrade install google-chrome-stable

答案2

希望帮助:

添加密钥:

wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -

设置存储库:

echo 'deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main' | sudo tee /etc/apt/sources.list.d/google-chrome.list

安装包:

sudo apt update 
sudo apt install google-chrome-stable

答案3

上下文:您已经安装了 Chrome,但似乎无法更新它 - 命令行告诉您已经拥有最新版本,但 Chrome 一直抱怨您需要更新 - 而当您重新启动 Chrome 时,它​​无法更新。

请尝试以下操作...

查看/etc/apt/sources.list.d/google-chrome.list

如果它看起来像这样:

### THIS FILE IS AUTOMATICALLY CONFIGURED ###
# You may comment out this entry, but any other modifications may be lost.
# deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main

取消注释最后一行,使其看起来像这样:

### THIS FILE IS AUTOMATICALLY CONFIGURED ###
# You may comment out this entry, but any other modifications may be lost.
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main

然后做:

sudo apt update

进而:

sudo apt-get --only-upgrade install google-chrome-stable

答案4

  1. 从以下网址下载 .deb(例如):https://www.google.com/chrome/
  2. 在你的下载目录中,你需要找到:google-chrome-stable_current_amd64.deb
  3. 跑步:sudo dpkg -i google-chrome-stable_current_amd64.deb

这个对我有用。

相关内容