从 16.04 升级到 18.04 后,我无法运行终端,而且许多应用程序无法加载

从 16.04 升级到 18.04 后,我无法运行终端,而且许多应用程序无法加载

在顺利运行了 16.04 后,我想尝试升级到 18.04。升级过程相当顺利。但是,现在我注意到许多问题,这些问题导致系统无法正常运行。一个主要问题是,当我尝试运行终端时,它永远不会加载。我想知道是不是因为我在 16.04 中运行的是 gnome 界面,而无法使用 unity 界面。我应该尝试删除 16.04 gnome 界面吗?还是这会导致更多问题?任何帮助都将不胜感激。

答案1

您是否在执行以下步骤后运行了此命令?-

这应该是你的最后一步 -sudo do-release-upgrade -d

步骤1:更新 Ubuntu 16.04 服务器 在升级到 Ubuntu 18.04 之前,您应该先更新当前的 16.04。建议在升级之前更新/升级所有已安装的软件包。要更新 Ubuntu,请连接到服务器并运行以下命令:

sudo apt update && sudo apt dist-upgrade && sudo apt autoremove && sudo apt autoclean -y

第2步:安装 Ubuntu 更新管理器 更新 Ubuntu 16.04 服务器后,如果尚未安装 update-manager-core,请运行以下命令进行安装。

sudo apt-get install update-manager-core

然后打开 update-manager 配置文件,并确保提示行设置为 lts

sudo nano /etc/update-manager/release-upgrades

确认提示符等于 lts

发布升级程序的默认行为。

[DEFAULT]
# Default prompting behavior, valid options:
#
#  never  - Never check for a new release.
#  normal - Check to see if a new release is available.  If more than one new
#           release is found, the release upgrader will attempt to upgrade to
#           the release that immediately succeeds the currently-running
#           release.
#  lts    - Check to see if a new LTS release is available.  The upgrader
#           will attempt to upgrade to the first LTS release available after
#           the currently-running one.  Note that this option should not be
#           used if the currently-running release is not itself an LTS
#           release, since in that case the upgrader won't be able to
#           determine if a newer release is available.
Prompt=lts
If not, change it to lts and save the file.

步骤3:执行 Ubuntu 18.04 LTS 升级现在您的系统已准备就绪,请运行以下命令开始将 Ubuntu 升级到最新开发版本。

sudo do-release-upgrade -d

答案2

我在 18.04.2 上也遇到了类似的问题,最后升级到了 18.10,这个问题就解决了。18.04 的一些内核子版本似乎存在问题

相关内容