2

When I run

sudo apt-get update 
sudo apt-get upgrade 
Sudo apt-get install xfce4 

On Ubuntu server 18.04, it says it installed all the packages but when i reboot i still don't have a GUI! What am i doing wrong???

The other post is using

sudo apt install --no-install-recommends xubuntu-core

I'm very unclear why

sudo apt-get install xfce4 

Is not giving me a GUI. I don't want my server to be turned into a full-blown desktop (I don't want a bunch of software and applications that I don't need ) GUI I just want the base of Xfce. Unless I'm missing something here and

sudo apt install --no-install-recommends xubuntu-core 

is just the base, either way please explain, why I install xfce4 but still don't see a GUI? Is there something else that I need to install prior to this?

Here is another example when I tried this method I still got no GUI.

Also in the page that you say is duplicate in the third post down the answer is to run

sudo apt-get install xfce4 

to install Xfce desktop and that doesn't work for me.

Zanna
  • 70,465

1 Answers1

3

You are not doing anything wrong, just not quite done yet.

Install a "Display Manager".

In short the display manager is the GUI login screen that will load the requested "Window Manager", like XFCE, with the entered user credentials.

jc__
  • 198