我注意到我的 Google Chrome apt-get update 命令已经失败了很长一段时间,我不确定这是我的机器的问题还是其他人也有同样的问题。
我的/etc/apt/sources.list.d/google.list
包含:
deb [arch=amd64] https://dl.google.com/linux/chrome/deb stable main
但apt-get update
在这个 repo 上执行总是会失败。
此外,Google 还报告了 repo URL 的 404 错误https://dl.google.com/linux/chrome/deb
。
谷歌改变了 Chrome 的更新方式吗?
答案1
手动将其添加到文件中不是一个好主意。
如果您从 Google 下载的 deb 安装 Chrome,它会添加正确的条目。
错误部分是https
。将其更改为http
,一切应能正常工作。
自动设置的正确条目是:
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main
它现在可以工作了。