我正在运行 Ubuntu 14.04 LTS(32 位)。现在我想安装 Gnome 桌面环境(不删除 unity)。我知道我可以通过以下命令安装:
sudo apt-get install gnome-shell
sudo apt-get install ubuntu-gnome-desktop
但我不知道它们之间的确切区别。(可能是我误解了它们)
所以,gnome-shell
通过和安装 Gnome 有什么区别ubuntu-gnome-desktop
?
我应该使用哪一个来安装 Gnome 桌面环境?
答案1
ubuntu-gnome-desktop
将安装完整的 GNOME 桌面环境(包括gnome-shell
),以及一些针对 Ubuntu 的标准应用程序和优化。
gnome-shell
只会安装 GNOME shell 及其依赖项。与 不同ubuntu-gnome-desktop
,它不会自动安装软件包gnome-session
(以及其他软件包),而您实际使用 GNOME 桌面时需要这些软件包。
因此,要获得桌面环境,您应该安装ubuntu-gnome-desktop
。
下面将清楚地显示ubuntu-gnome-desktop
依赖于它gnome-shell
,因此它包含包gnome-shell
:
$ apt-cache depends ubuntu-gnome-desktop | grep gnome-shell
Depends: gnome-shell
Depends: gnome-shell-extensions
答案2
gnome-shell 仅安装桌面环境,而 ubunut-gnome-desktop 是一组包含 gnome-shell 和所有基本 ubuntu gnome 应用程序(如 totem、rhytmbox、firefox)的软件包……