当我有 AMD 处理器时,为什么 aptitude 会给我英特尔微码升级?

cho*_*dyk 4 aptitude amd-processor

我有一个 Supermicro AS-2022G-URF(H8DGU 主板),带有 2 个 AMD Opteron 6272 16C​​/16T 2.1GHz 和一个 LSI MegaRAID SAS 2108 RAID 控制器,目前正在运行 Ubuntu Server 14.04 LTS(计划在今年夏天升级到 16.04)。去年有几次,当我完成 aptitude 更新/升级时,intel-microcode 软件包已显示为将要安装的软件包之一。既然这台服务器是 AMD 处理器,不是 Intel,为什么 aptitude 提供这个包?是否出于其他原因需要这样做?在这方面与 aptitude 一起有任何不良影响吗?

NGR*_*des 8

因为它是内核的依赖项。我检查了运行以下命令:

$ apt depends linux-image-generic
linux-image-generic
Depends: linux-image-4.15.0-50-generic
Depends: linux-modules-extra-4.15.0-50-generic
Depends: linux-firmware
Depends: intel-microcode
Depends: amd64-microcode.
Recommends: thermald
Run Code Online (Sandbox Code Playgroud)

应该没有害处,它们不会加载到错误的 CPU 上。

  • 使用 apt 缓存的操作不需要 `sudo`,所以我为你删除了它。 (3认同)