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
相关推荐
实心儿儿31 分钟前
Linux —— 应用层协议HTTP
linux·网络·http
小张同学a.2 小时前
LAMP架构2
linux·运维·网络·架构·负载均衡
千河殇 多想和她2 小时前
如何在Reaonix中使用CodeGraph以及CodeGraph效果实测经验分享
linux·运维·ubuntu
躺不平的理查德2 小时前
CMAKE备忘录
linux·运维·服务器
面对疾风叭!哈撒给2 小时前
Linux ARM架构的docker和docker-compose离线安装
linux·docker·架构
阿虎儿3 小时前
Linux 下为局域网 IP(如 192.168.1.100)打造不受浏览器警告的自签名 SSL/TLS 证书
linux·安全·https
小王C语言3 小时前
虚拟机开机过程中关机,再次开机没有分配 IP
linux·网络·tcp/ip
薛定谔的悦3 小时前
光储系统 AEMS 模块的光伏控制模式设计
linux·能源·储能·bms
码农客栈4 小时前
U-Boot详解(三)之启动流程详解
linux·uboot
say_fall4 小时前
【Linux系统编程】文件操作基础:C标准库、系统调用、fd是什么和fd与FILE*的关系
android·linux·c语言