How do I install MATE (the desktop environment)?

I have seen several youtube videos that are showing MATE (The Gnome 2.x fork) installed in 11.10. How can I install it to test it out in 11.10 and above.

If it helps the only sources I know of are:

SourceForge, GitHub, and Matsusoft


Solution 1:

enter image description here

12.04 - 13.10

If you want MATE without the minty-freshness (sic) you could use the debian repo specifically for Ubuntu.

This repository contains 300Mb of pure Mate-desktop packages - that is, the Gnome-2 packages after the fork together with fixes released since.

Examining the package list, there doesn't appear to be much/if any updates to the base Ubuntu package lists.

What this means is that - unlike the Linux Mint derivative - the Mate-Desktop in this repo will sit much more comfortably along side any other desktops installed on Ubuntu - for example, Gnome-Shell, Unity, LXDE etc..

The Linux Mint Mate repo contains Mint specific changes but more importantly, later versions of the Gnome-3 packages that will upgrade Unity & Gnome-Shell packages - it is a more one way install.

to install the repository

sudo add-apt-repository "deb http://packages.mate-desktop.org/repo/ubuntu $(lsb_release -cs) main"

install MATE desktop

sudo apt-get update
sudo apt-get install mate-archive-keyring
sudo apt-get update
# this installs base packages
sudo apt-get install mate-core
# this installs more packages
sudo apt-get install mate-desktop-environment

14.04 users

The official MATE development team have maintained PPAs which when used, uplifts Ubuntu 14.04 to Mate 1.8.1

In order to correctly install and configure MATE 1.8.1 on Ubuntu Trusty you will also need to add their PPAs:

Open a terminal complete the following steps to enable the appropriate PPAs and install MATE 1.8.1 on Ubuntu Trusty.

sudo apt-add-repository ppa:ubuntu-mate-dev/ppa
sudo apt-add-repository ppa:ubuntu-mate-dev/trusty-mate
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install --no-install-recommends ubuntu-mate-core ubuntu-mate-desktop

Solution 2:

Since there is now an official Ubuntu Mate release ("15.04 and later"), why not just switch to that:

sudo apt-get install ubuntu-mate-desktop^

should do that for you (offering another desktop alternative, just like lubuntu-desktop etc)