在Ubuntu20.04上更新chrome的正确方法是什么?我安装的是.deb文件
我现在开始在我的铬上得到更新的铬警告信息。我不想卸载然后重新安装以保存我的书签和保存的凭据。
谷歌同步是一个安全的选择吗?
发布于 2020-09-18 06:40:21
当通过.deb文件完成安装时,以下是在Ubuntu20.04上更新Google的几种方法:
sudo apt-get update
,然后输入sudo apt-get --only-upgrade install google-chrome-stable
。发布于 2020-09-18 08:58:57
希望这能帮助:
添加键:
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
发布于 2022-02-14 09:18:21
上下文:您已经安装了Chrome,并且似乎无法更新它--命令行告诉您您已经拥有最新的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
https://askubuntu.com/questions/1275967
复制相似问题