无法从 18.04 升级:抱歉,此系统不再升级

And*_*ers 7 upgrade do-release-upgrade 18.04 20.04

我认为我的更新管理器对安装的 Ubuntu 版本感到困惑。

完成sudo apt update和 后sudo apt upgrade,尝试从 18.04 升级到 20.04 时,我得到以下信息(见下文)。

lsb_release -a报告我安装了 18.04时,为什么我会收到“抱歉,此系统不再升级”消息的任何想法 - 以及有关如何解决此问题的任何想法?

bh@Medion:~$ sudo do-release-upgrade
Checking for a new Ubuntu release
Get:1 Upgrade tool signature [1.554 B]                                                                             
Get:2 Upgrade tool [1.336 kB]                                                                                      
Fetched 1.338 kB in 0s (0 B/s)                                                                                     
authenticate 'focal.tar.gz' against 'focal.tar.gz.gpg' 
extracting 'focal.tar.gz'

Reading cache

Checking package manager
Reading package lists... Done
Building dependency tree        
Reading state information... Done
Hit http://ppa.launchpad.net/danielrichter2007/grub-customizer/ubuntu bionic InRelease                             
Hit http://de.archive.ubuntu.com/ubuntu bionic InRelease                                                           
Hit http://de.archive.ubuntu.com/ubuntu bionic-updates InRelease                                                   
Hit http://de.archive.ubuntu.com/ubuntu bionic-backports InRelease                                                 
Get:1 http://security.ubuntu.com/ubuntu bionic-security InRelease [88,7 kB]                                        
Fetched 88,7 kB in 0s (0 B/s)                                                                                      
Reading package lists... Done    
Building dependency tree          
Reading state information... Done

Sorry, no more upgrades for this system 

There will not be any further Ubuntu releases for this system's 
'i386' architecture. 

Updates for Ubuntu 18.04 will continue until April 2023. 


Restoring original system state

Aborting
Reading package lists... Done    
Building dependency tree          
Reading state information... Done
bh@Medion:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 18.04.5 LTS
Release:    18.04
Codename:   bionic
bh@Medion:~$ uname -a
Linux Medion 4.15.0-122-generic #124-Ubuntu SMP Thu Oct 15 13:02:56 UTC 2020 i686 i686 i686 GNU/Linux
bh@Medion:~$ 
Run Code Online (Sandbox Code Playgroud)

use*_*733 20

您似乎正在运行 32 位版本的 Ubuntu,如下所示:

There will not be any further Ubuntu releases for this system's 
'i386' architecture. 
Run Code Online (Sandbox Code Playgroud)

没错。32 位桌面已从未来版本中删除,包括 20.04。32 位桌面贡献者和测试者太少了。

您当前的 32 位 Ubuntu 18.04 将得到整整五年的支持(直到 2023 年 4 月)。

Ubuntu 从志愿者贡献者和测试者那里汲取力量。很有可能恢复 32 位桌面开发……如果有足够多的志愿者站出来处理(相当多的)工作。

如果您碰巧在 64 位硬件上运行 32 位 Ubuntu,则可以安装 64 位 Ubuntu。您不能“升级”到不同的架构——它需要重新安装。

  • @Anders 不,这意味着内核是建立在 amd64 系统上的(这当然是可能的,而且现在可能是预期的情况)。您正在运行一个 32 位系统,如 `uname` 输出中的所有 `i686` 所示。 (8认同)