我已将我们服务器的 Ubuntu Bionic 升级到,但它要求我升级到 Xenial?

我已将我们服务器的 Ubuntu Bionic 升级到,但它要求我升级到 Xenial?

这是我通过 SSH(无控制台 - 远程)登录时的情况Ubuntu 18.04 Bionic。我已经重启了很多次了,do-release-upgrade它说我应该升级到赛尼尔? 为什么?2-3 年前,我从14.0416.04,然后从16.0418.04,所以现在,我在18.04然后它仍然说我应该升级到赛尼尔作为sudo apt-get install linux-generic-lts-xenial

我的输出是这样的:

Welcome to Ubuntu 18.04 LTS (GNU/Linux 4.15.0-20-generic x86_64)

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

  System information as of Tue May  8 16:31:20 CEST 2018

  System load:                    0.0
  Usage of /:                     42.8% of 109.88GB
  Memory usage:                   39%
  Swap usage:                     1%
  Processes:                      264
  Users logged in:                0
  IP address for br0:             a.b.c.d
  IP address for br-123456789012: 1.2.3.4
  IP address for br-123456789012: 1.2.3.4
  IP address for dockerZ:         1.2.3.4

 * Meltdown, Spectre and Ubuntu: What are the attack vectors,
   how the fixes work, and everything else you need to know
   - https://ubu.one/u2Know

 * Canonical Livepatch is enabled.
   - All available patches applied.

0 packages can be updated.
0 updates are security updates.


You have packages from the Hardware Enablement Stack (HWE) installed that
are going out of support on 2016-08-04.

To upgrade to a supported (or longer-supported) configuration:

* Upgrade from Ubuntu 14.04 LTS to Ubuntu 16.04 LTS by running:
sudo do-release-upgrade 

OR

* Switch to the current security-supported stack by running:
sudo apt-get install linux-generic-lts-xenial

and reboot your system.

怎么会?

答案1

检测 HWE 支持的脚本似乎与剩余的内核包混淆。

您可以以 root 身份运行“hwe-support-status --show-all-unsupported”来确定系统中存在哪些剩余包,然后对每个包运行“apt --purge remove”以删除它们。

此后您将不会再看到该消息。

相关内容