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
相关推荐
大虾别跑13 小时前
麒麟v10搭建rsync
linux·运维·服务器
桌面运维家13 小时前
Nginx+Keepalived:Linux高可用负载均衡配置实战
linux·nginx·负载均衡
BullSmall13 小时前
LVS与HAProxy高可用负载方案详解
linux·服务器·网络
docsz13 小时前
Flink-1.20集群部署
linux·服务器·flink
坤坤藤椒牛肉面13 小时前
常用知识点
linux
行思理13 小时前
Linux查看网站访问IP的命令大全
linux·服务器·前端
sdm07042714 小时前
Linux-基础IO
linux·运维·操作系统·理解文件
爱吃生蚝的于勒14 小时前
【Linux】网络之http协议
linux·运维·服务器·网络·数据结构·c++·http
创世宇图14 小时前
Alibaba Cloud Linux 安装生产环境-Tomcat
linux·tomcat
fakerth14 小时前
【Linux】调度器底层原理深入探索
linux·c++·操作系统