Google Chrome 存储库失败

Google Chrome 存储库失败
Skipping acquire of configured file 'main/binary-i386/Packages' as repository 'http://dl.google.com/linux/chrome/deb stable InRelease' doesn't support architecture 'i386'

是我表演时得到的

sudo apt-get update.

我在这个网站上找到了解决方案(跳过获取配置文件“main/binary-i386/Packages”,因为存储库“xxx”不支持体系结构“i386”

并表演

deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main

但回来了

No command 'deb' found, did you mean:
 Command 'dex' from package 'dex' (universe)
 Command 'debc' from package 'devscripts' (main)
 Command 'deb3' from package 'quilt' (main)
 Command 'dab' from package 'bsdgames' (universe)
 Command 'derb' from package 'icu-devtools' (main)
 Command 'debi' from package 'devscripts' (main)
 Command 'xdeb' from package 'xdeb' (universe)
 Command 'dwb' from package 'dwb' (universe)
deb: command not found

由于我的声望值不足 50 点,我无法对旧帖子发表评论,因此对于重复的问题我深表歉意。

答案1

这不是一个终端命令;它是关于这个文件的内容:

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

如果您安装了 64 位,则应编辑该文件并将最后一行更改为:

deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main

如果您安装了 32 位版本,最好删除该文件。Google Chrome 不会再针对 32 位版本进行任何更新。

答案2

这个命令就可以了!

sudo sed -i -e 's/deb http/deb [arch=amd64] http/' "/etc/apt/sources.list.d/google-chrome.list"

或者检查文件/etc/apt/sources.list.d/google-chrome.list/etc/apt/sources.list,并更改下面的行:

德布http://dl.google.com/linux/chrome/deb/稳定主线

deb [架构=amd64]http://dl.google.com/linux/chrome/deb/稳定主线


最后..

sudo apt-get update

答案3

如果你安装了 Google Earth,请同样操作。删除 debhttp://dl.google.com/linux/chrome/deb/稳定主线

添加 deb [arch=amd64]http://dl.google.com/linux/chrome/deb/稳定主线

答案4

有一个比你找到的更简单的解决方案。

转到“软件和更新”=>“其他程序”并取消标记dl.google.com/linux/chrome/deb/stable

这将解决您的问题,这也会禁用 Google Chrome 的更新,但这是更好的方法,而其他解决方案并没有出现。

相关内容