如何从 Ubuntu 桌面 14.04 中删除 Gnome

如何从 Ubuntu 桌面 14.04 中删除 Gnome

由于某些原因,我需要在我的服务器上使用 Ubuntu 桌面,因为我无法使用 Ubuntu 服务器,但为了使其更高效,我想删除桌面环境并直接启动到 shell,我看到的所有其他问题的答案都是针对旧版本的 Ubuntu 并且他们发布的命令不起作用,主要是因为它说没有找到那些包。

总而言之,我只需要桌面环境消失并启动到 shell。

答案1

如果已经安装,您可以删除 Ubuntu 桌面元包并安装所需的服务器软件:

sudo apt-get install openssh

根据需要配置 SSH。然后:

sudo apt-get remove ubuntu-desktop
sudo apt-get autoremove

答案2

sudo apt-get purge unity gnome-shell lightdm

sudo apt-get clean

sudo apt-get autoremove

sudo apt-get -f install

相关内容