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
相关推荐
网络小白不怕黑18 小时前
11.虚拟机模拟路由器实验
linux·运维·服务器·网络
Mapleay19 小时前
Linux 内核编程基础
linux·运维·服务器
sg_knight20 小时前
Claude Code 安装指南(macOS / Linux / Windows WSL)
linux·windows·macos·claude·code·anthropic·claude-code
oioihoii20 小时前
CentOS运行Teemii实操:Docker Compose部署、漫画导入与公网阅读
linux·docker·centos
恒5391 天前
Linux文件系统I
linux·运维·服务器
阿成学长_Cain1 天前
Linux ipcs 命令超全详解:查看共享内存 / 消息队列 / 信号量,IPC 运维必备
linux·运维·服务器·网络·数据库
黯然神伤8881 天前
AlmaLinux设置软件下载源
linux·alma
青瓦梦滋1 天前
协议定制/序列化-反序列化(Linux视角)
linux·服务器·网络·c++
阿成学长_Cain1 天前
Linux dirs命令详解|Bash目录堆栈管理快速切换目录实战教程
linux·运维·前端·数据库
ICECREAM1 天前
Linux 进程间通讯(IPC)——总结
linux