1

I have installed standard ubuntu in a VM but it's running too slow. I would like to remove unity and install XFCE4 instead. I would also like to keep the extra applications like Libreoffice and so.

What is the best way to do this?

I've found this old link (for 12.04) and also this site which show different commands so I don't know what to do.

wouter205
  • 1,181

2 Answers2

3

I've done something similar, but for gnome-shell.

If you want to "convert" to a xubuntu, you should do:

sudo apt install xubuntu-desktop

Log out, change to the xfce-session in lightdm (by clicking on the icon, top icon to the right of your user) and log in.

Remove ubuntu-desktop meta package:

sudo apt purge ubuntu-desktop

If you only want to install xfce and remove unity, but keep the packages provided by ubuntu-desktop:

sudo apt install xfce4

Do the same log out/change session/log in procedure as noted above.

Remove unity:

sudo apt purge --autoremove unity unity8
mgor
  • 1,231
1

Shouldn't it work?

sudo apt-get remove unity
sudo apt-get install xfce4
David Foerster
  • 36,890
  • 56
  • 97
  • 151
A S K
  • 42