Intelligente Lösungen
in neuer Dimension

Ubuntu und ESM-Pakete

Seit ein paar Wochen erscheint beim Anmelden an Ubuntu-Servern ein Hinweis, dass man mit Ubuntu Pro und ‘esm-apps’ zusätzliche aktualisierte Pakete einspielen kann. Hier beschreibe ich, wie ich herausfinden kann, welche Pakete davon betroffen sind.

Anzeige beim Anmelden

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Welcome to Ubuntu 20.04.6 LTS (GNU/Linux 5.15.0-75-generic x86_64)

 * Documentation:  https://help.ubuntu.com
 * Management:     https://landscape.canonical.com
 * Support:        https://ubuntu.com/advantage

Expanded Security Maintenance for Applications is not enabled.

0 updates can be applied immediately.

1 additional security update can be applied with ESM Apps.
Learn more about enabling ESM Apps service at https://ubuntu.com/esm

New release '22.04.2 LTS' available.
Run 'do-release-upgrade' to upgrade to it.

Your Hardware Enablement Stack (HWE) is supported until April 2025.
Last login: Mon Jun 19 16:20:17 2023 from 91.89.93.197

Anzeige der aktualisierbaren ESM-Programme

1
2
3
4
5
6
7
8
$ ua security-status --format json --esm-apps \
  |jq -r '.packages[]|select(.service_name == "esm-apps" and .status == "pending_attach")|"\(.package) \(.version)"'
...
opensc 0.20.0-3ubuntu0.1~esm1
opensc-pkcs11 0.20.0-3ubuntu0.1~esm1
rpm 4.14.2.1+dfsg1-1ubuntu0.1~esm1
rpm-common 4.14.2.1+dfsg1-1ubuntu0.1~esm1
rpm2cpio 4.14.2.1+dfsg1-1ubuntu0.1~esm1

Änderungen

  • 2023-06-19: Erste Version