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
相关推荐
tod1137 分钟前
深入解析ext2文件系统架构
linux·服务器·c++·文件系统·ext
萧行之20 分钟前
FRP 0.62.0 + Mac Ollama 公网穿透部署+排障实录(标准 TOML 格式)
linux·服务器
齐潇宇22 分钟前
文件共享服务器
linux·运维·网络·文件共享
顺顺 尼1 小时前
进程(从操作系统的状态到linux的进程状态一步到位)
linux·服务器
x-cmd1 小时前
[260412] x-cmd v0.8.13:x free 新增进程内存显示,feishu、telegram REPL 机器人齐上线!
linux·macos·机器人·内存·x-cmd·telegram·feishu
昔我往昔1 小时前
Linux修改静态ip
linux·服务器·tcp/ip
c++逐梦人1 小时前
线程同步与互斥
linux·开发语言
ZPC82102 小时前
RViz 虚拟机械臂 / 真实机械臂 / Gazebo 仿真
linux·人工智能·机器人
爱学习的小囧2 小时前
嵌套式 ESXi 8.x/9.0 虚拟设备下载与实战指南
java·linux·运维·服务器·虚拟化