Ubuntu24.04日常使用过程的问题记录
2025/12/17
... doesn't support architecture 'i386'
问题描述:
在切换内核版本到6.11.0-26后,sudo apt update 后发现以下问题
bash
N: Skipping acquire of configured file 'main/binary-i386/Packages' as repository 'https://dl.google.com/linux/chrome/deb stable InRelease' doesn't support architecture 'i386'
根本原因:谷歌在Linux上放弃了对32位Chrome的支持,导致在64位系统(启用多拱)更新apt时触发错误...详情见此处:http://www.omgubuntu.co.uk/2016/03/fix-failed-to-fetch-google-chrome-apt-error-ubuntu
解决办法:
bash
# /etc/apt/sources.list.d/google-chrome.sources
ypes: deb
URIs: https://dl.google.com/linux/chrome/deb/
Suites: stable
Components: main
Architectures: amd64 #添加amd64
Signed-By:
/etc/apt/sources.list.d/google-chrome.list.distUpgrade
/etc/apt/sources.list.d/google-chrome.list.save
这两个文件应该包含 [arch=amd64],没有添加即可。
bash
deb [arch=amd64] https://dl.google.com/linux/chrome/deb/ stable main