我收到了 Ubuntu 24.04 需要更新的通知。单击通知后,出现了固件更新程序 GUI。有一个针对较新版本的 UEFI dbx 更新。更新后,系统重新启动。但是,我注意到一个严重的问题。此系统 CPU 有 16 个内核、32 个线程,系统监视器将显示 32 个 CPU 内核。UEFI dbx 更新后,系统监视器现在只显示 1 个 CPU。更新似乎损坏了系统。我该如何解决此问题?
我认为 GUIfwupdmgr
与终端有关。我刚刚运行了命令fwupdmgr get-updates
,它显示
...
Devices with the latest available firmware version:
• UEFI dbx
────────────────────────────────────────────────
Devices that have been updated successfully:
• UEFI dbx (371 → 20241101)
Uploading firmware reports helps hardware vendors to quickly identify failing and successful updates on real devices.
此外,终端命令fwupdmgr get-devices
显示了此信息(我屏蔽了下面的一些 ID 信息):
...
...
...
│ └─UEFI dbx:
│ Device ID: Some numbers
│ Summary: UEFI revocation database
│ Current version: 20241101
│ Minimum Version: 20241101
│ Vendor: UEFI:Linux Foundation
│ Install Duration: 1 second
│ GUIDs: xxx ← UEFI\CRT_xxx&ARCH_X64
│ yyy ← UEFI\CRT_yyy&ARCH_X64
│ zzz ← UEFI\CRT_zzz&ARCH_X64
│ Device Flags: • Internal device
│ • Updatable
│ • Supported on remote server
│ • Needs a reboot after installation
│ • Device is usable for the duration of the update
│ • Only version upgrades are allowed
│ • Signed Payload
更新:
我刚刚尝试重新启动系统,以查看使用(恢复模式)或较旧的 Linux 版本启动时是否也会出现此问题。我确认在使用Linux 6.11.0-19-generic (recovery mode)
和较旧版本启动时不会出现此问题Linux 6.8.0-52-generic
。此问题似乎出现在Linux 6.11.0-19-generic
最新的 Linux 版本上。
另外,我发现我确实做了一个apt upgrade
(我忘记了,并在检查 /var/log/apt/history.log 后进行了验证),它将 Linux 版本升级到了 6.11.0-19.19~24.04.1。此升级必须在 UEFI dbx 更新之后但在重新启动之前进行。
$ dpkg --list | grep linux-image
ii linux-image-6.11.0-19-generic 6.11.0-19.19~24.04.1 amd64 Signed kernel image generic
rc linux-image-6.8.0-49-generic 6.8.0-49.49 amd64 Signed kernel image generic
rc linux-image-6.8.0-50-generic 6.8.0-50.51 amd64 Signed kernel image generic
ii linux-image-6.8.0-51-generic 6.8.0-51.52 amd64 Signed kernel image generic
ii linux-image-6.8.0-52-generic 6.8.0-52.53 amd64 Signed kernel image generic
ii linux-image-generic-hwe-24.04 6.11.0-19.19~24.04.1 amd64 Generic Linux kernel image
我该如何解决这个问题Linux 6.11.0-19-generic
?