Ubuntu版本更新的时间戳

Ubuntu版本更新的时间戳

如何找到 Ubuntu 更新版本的时间戳,例如从 20.04 升级到 20.04.1?

我尝试在位于 的 apt 历史日志中进行搜索/var/log/apt,但是这些日志包含有关正在升级的特定软件包的信息,而不是操作系统版本本身的信息。

有没有办法获得从 Ubuntu 20.04 更改为 Ubuntu 20.04.1 的时间戳?

答案1

更新:(根据斯蒂芬·基特的评论。)

您可以查看新版本的base-files安装时间。除其他外,该软件包还更新包含当前版本信息的文件。您可以通过查阅其更改日志来了解要查找的包版本,该日志位于其页面(这里或者这里)。

base-files (11ubuntu5.1) focal; urgency=medium

  * /etc/issue, /etc/issue.net, /etc/lsb-release, /etc/os-release: Bump
    version number to 20.04.1 in preparation of the next point release.

因此,您可以查看安装11ubuntu5.1的版本来了解您的系统何时升级到 Ubuntu 20.04.1。base-files

初步建议:

安装 Ubuntu 20.04.1 的较新软件包时发生升级。所以你可以看看Ubuntu 20.04.1 发行说明并选择一个包裹进行检查。然后检查该软件包的更改日志,以确定升级到 Ubuntu 20.04.1 时必须安装的版本。您可以grep通过日志了解该版本的安装时间。

例如,Ubuntu 20.04.1发行说明linux-firmware是:

linux-firmware 1880792 为 tgl 机器添加 sof-firmware 和 tplg 文件

linux-firmware 1885970 从 tgl 机器的 v0.6_release 恢复 sof-firmware 和 tplg 文件

linux-firmware 1886390 修复 Realtek 8822C 不扫描 HID 设备的问题

linux-firmware 1887595 集成 Tigerlake 机器的 TGL_SOF_FW_prod_signed_v0.6.2_release

页的linux-firmware焦点更新包指向变更日志以。。。开始:

linux-firmware (1.187.3) focal; urgency=medium

  * alsa/sof: support 1 and 3 dmics (LP: #1891585)
    - SAUCE: sof-firmware: add 1ch and 3ch topology files

 -- Seth Forshee <[email protected]>  Wed, 19 Aug 2020 13:17:13 -0500

linux-firmware (1.187.2) focal; urgency=medium

  * Revert the sof-firmware and tplg files from v0.6_release for tgl machines
    (LP: #1885970)
    - SAUCE: Revert "UBUNTU: SAUCE: add sof firmware and tplg for tgl platforms"

  * Fix an issue that HID devices are not scanned by Realtek 8822C
    (LP: #1886390)
    - rtl_bt: Update RTL8822C BT FW to 0x0999_3AA1

  * Integrate TGL_SOF_FW_prod_signed_v0.6.2_release for tigerlake machines
    (LP: #1887595)
    - SAUCE: integrate TGL_SOF_FW_prod_signed_v0.6.2_release

 -- Seth Forshee <[email protected]>  Wed, 15 Jul 2020 08:11:59 -0500

linux-firmware (1.187.1) focal; urgency=medium

  * Add sof-firmware and tplg files for tgl machines (LP: #1880792)
    - SAUCE: add sof firmware and tplg for tgl platforms

 -- Seth Forshee <[email protected]>  Wed, 17 Jun 2020 07:36:48 -0500

linux-firmware与 Ubuntu 20.04.1 发行说明匹配的最新版本是 1.187.2。因此,查看此版本的安装时间应该可以得知系统何时升级。

相关内容