0

Quick question:

I have so many things configured in my Ubuntu 16.10 machine. IDEs, emacs,configuration files, zh, keybindings, touchpad configuration, etc etc etc.

I want to try Gnome 3, but I don't want to install a new OS (Ubuntu Gnome), is there anyway to just install gnome de, in a stable way?

Or, a way to pack and unpack all my OS configuration and programs into a new distribution? (If I really had to change from Ubuntu to Ubuntu Gnome?)

Alo
  • 195

3 Answers3

3

Yes go to the command line and type sudo apt install gnome this will install the gnome GUI at some point you will be given a choice of display manager either lightDM or GDM personally I would recommend lightDM once the install is complete logout and choose which desktop to use.

Edit 1 If you just want the gnome shell with none of the 'bundled' packages then type sudo apt install gnome-shell

1

If you want to be super sure that nothing is going to mess up, then don't install anything and use a LiveCD instead. This allows you to try any Ubuntu flavour from a CD/USB.

To try this option, create a LIVECD, just as if you were to install Ubuntu. But then, when booting, select "Try Ubuntu without installing", as below:

enter image description here

Naturally, you need to create a LiveCD with Ubuntu Gnome. You can get it here. Official instructions to create ISO are here.

-1

You could install the Gnome 3.20 Desktop environment on your Ubuntu 16.10 OS. After installing that, you could switch desktop environments before logging in.

For installing Gnome 3.20 DE, open up your terminal and type these commands.

sudo add-apt-repository ppa:gnome3-team/gnome3-staging
sudo add-apt-repository ppa:gnome3-team/gnome3
sudo apt update
sudo apt dist-upgrade
sudo apt install gnome gnome-shell

Read this for more reference.

Levi
  • 22