如何安装 gnome-shell Ubuntu 18.04

在本教程中,我们学习如何安装 gnome-shell Ubuntu 18.04。 gnome-shell 是 GNOME 桌面的图形 shell

介绍

在本教程中我们学习如何安装 gnome-shell 在 Ubuntu 18.04。

什么是 gnome-shell

gnome-shell 是:

侏儒 Shell 提供核心界面功能,如切换窗口、启动应用程序或查看通知。 它利用现代图形硬件的功能,并引入创新的用户界面概念,提供令人愉悦且易于使用的体验。 侏儒 Shell 是 GNOME 3 用户体验的决定性技术。

有三种安装方法 gnome-shell 在 Ubuntu 18.04。 我们可以用 apt-get, aptaptitude。 在以下部分中,我们将描述每种方法。 您可以选择其中之一。

使用 apt-get 安装 gnome-shell

更新 apt 数据库 apt-get 使用以下命令。

更新apt数据库后,我们可以安装 gnome-shell 使用 apt-get 通过运行以下命令:

sudo apt-get -y install gnome-shell

使用 apt 安装 gnome-shell

更新 apt 数据库 apt 使用以下命令。

更新apt数据库后,我们可以安装 gnome-shell 使用 apt 通过运行以下命令:

sudo apt -y install gnome-shell

使用 aptitude 安装 gnome-shell

如果您想遵循此方法,您可能需要先安装 aptitude,因为 aptitude 通常不会默认安装 Ubuntu。 更新 apt 数据库 aptitude 使用以下命令。

更新apt数据库后,我们可以安装 gnome-shell 使用 aptitude 通过运行以下命令:

sudo aptitude -y install gnome-shell

如何卸载 gnome-shell Ubuntu 18.04

仅卸载 gnome-shell 打包我们可以使用以下命令:

sudo apt-get remove gnome-shell

卸载 gnome-shell 及其依赖项

卸载 gnome-shell 及其不再需要的依赖项 Ubuntu 18.04,我们可以使用以下命令:

sudo apt-get -y autoremove gnome-shell

删除 gnome-shell 配置和数据

去除 gnome-shell 配置和数据来自 Ubuntu 18.04我们可以使用以下命令:

sudo apt-get -y purge gnome-shell

删除 gnome-shell 配置、数据及其所有依赖项

我们可以使用下面的命令来删除 gnome-shell 配置、数据及其所有依赖项,我们可以使用以下命令:

sudo apt-get -y autoremove --purge gnome-shell

参考

概括

在本教程中我们学习如何安装 gnome-shell 封装在 Ubuntu 18.04 使用不同的包管理工具: apt, apt-getaptitude