Installing MATE On CentOS

less than 1 minute read

Description:

I’m a big fan of the MATE desktop for my Linux distro’s. As such, I found a neat guide on how to install it in CentOS v7.

To Resolve:

  1. During the install, just choose minimal install. Accept license, and then do your standard “sudo yum update” before moving to the next step.

  2. Now, install the EPEL-repositories

    1
    
    yum install epel-release
    
  3. Then install the X Window System

    1
    
    yum groupinstall "X Window system"
    
  4. Install the MATE packages. This will take a few minutes.

    1
    
    yum groupinstall "MATE Desktop"
    
  5. Tell your system to start the Graphical Interface

    1
    
    systemctl isolate graphical.target
    
  6. To have MATE boot up as the default desktop environment, enter the following command

    1
    
    systemctl set-default graphical.target
    
    • You will most likely want the Gnome Disk Utility as it the easiest way to interface with your disks. Once installed it can be found in: Applications => Accessories => Disks

    • Do this by running:

    1
    
    yum install gnome-disk-utility
    

Comments