Ubuntu 22.04.02 LTS 安装时系统显示时间与指定安装时间不同步

Ubuntu 22.04.02 LTS 安装时系统显示时间与指定安装时间不同步

在将 Ununtu 22.04.02 LTS 从 USB 密钥安装到 HP Pavilion 笔记本电脑上时,我遇到了以下问题:

当我跑步时sudo apt update && sudo apt upgrade -y

我得到:

E: Release file for http://nz.archive.ubuntu.com/ubuntu/dists/jammy-updates/InRelease is not valid yet (invalid for another 12h 51min 3s). Updates for this repository will not be applied.
E: Release file for http://nz.archive.ubuntu.com/ubuntu/dists/jammy-backports/InRelease is not valid yet (invalid for another 12h 51min 44s). Updates for this repository will not be applied.
E: Release file for http://security.ubuntu.com/ubuntu/dists/jammy-security/InRelease is not valid yet (invalid for another 13h 36min 36s). Updates for this repository will not be applied.

我还发现 Ubuntu 中显示的时间不正确。我重新安装了发行版以确保选择了正确的时区,但问题仍然存在。在安装 Ubuntu 之前,已经安装了 Mint,没有出现这样的问题。

于是我运行:journalctl -p 4 -b | head -n 5并得到以下结果:

Sep 27 05:43:55 eml kernel: x86/cpu: VMX (outside TXT) disabled by BIOS
Sep 27 05:43:55 eml kernel: x86/cpu: SGX disabled by BIOS.
Sep 27 05:43:55 eml kernel: MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
Sep 27 05:43:55 eml kernel: MMIO Stale Data CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/processor_mmio_stale_data.html for more details.
Sep 27 05:43:55 eml kernel:  #3

通读:

https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html
https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html#mds-sys-info
https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/processor_mmio_stale_data.html

但并不完全理解它。

然而我确实逃避了

cat /sys/devices/system/cpu/vulnerabilities/mds

Mitigation: Clear CPU buffers; SMT vulnerable

timedatectl

               Local time: Fri 2023-09-29 11:11:29 NZDT
           Universal time: Thu 2023-09-28 22:11:29 UTC
                 RTC time: Thu 2023-09-28 22:11:29
                Time zone: Pacific/Auckland (NZDT, +1300)
System clock synchronized: no
              NTP service: active
          RTC in local TZ: no

最后一个命令与另一台没有出现上述问题的 Ubuntu 机器上的命令相同。但是,NZDT、UTC 和 RTC 时间在比较时有明显差异。所以我对此一无所知,非常希望得到一些帮助。cpu 是:Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz

答案1

在BIOS设置中将BIOS时间和日期设置为UTC,保存BIOS设置中的更改,退出BIOS,继续正常启动。

您的 HP Pavilion 笔记本电脑配备 Intel Core i5 处理器。内核和相应的英特尔微码sudo apt install intel-microcode如果您的处理器不支持超线程(也称为对称多线程 (SMT)),则包( )更新可以完全解决 MDS 缺陷。

相关内容