Skipping xxx as repository xxxx doesn‘t support architecture ‘i386‘

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'

https://askubuntu.com/questions/741410/skipping-acquire-of-configured-file-main-binary-i386-packages-as-repository-x找到原因及解决方法。

根本原因:谷歌在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
相关推荐
番茄灭世神几秒前
Linux从入门到进阶第一章
linux·计算机·操作系统
Nightwish55 分钟前
Linux随记(二十八)
linux·运维·服务器
Zach_yuan12 分钟前
Socket 编程基础
linux·服务器
陌上花开缓缓归以16 分钟前
Linux 5.4内核版本内核宏梳理
linux·网络·github
Madison-No727 分钟前
【Linux】文件操作&&重定向原理
android·linux·运维
若风的雨1 小时前
安全与验证模块设计方案
linux·安全
Eiceblue1 小时前
.NET框架下Windows、Linux、Mac环境C#打印PDF全指南
linux·windows·.net
试试勇气2 小时前
Linux学习笔记(十三)--文件系统
linux·笔记·学习
yingdonglan2 小时前
鸿蒙跨端Flutter学习——GridView高级功能
linux·运维·windows
wdfk_prog2 小时前
[Linux]学习笔记系列 -- [drivers][clk]clk
linux·笔记·学习