Installing MATE On CentOS
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:
-
During the install, just choose minimal install. Accept license, and then do your standard “sudo yum update” before moving to the next step.
-
Now, install the EPEL-repositories
1
yum install epel-release
-
Then install the X Window System
1
yum groupinstall "X Window system"
-
Install the MATE packages. This will take a few minutes.
1
yum groupinstall "MATE Desktop"
-
Tell your system to start the Graphical Interface
1
systemctl isolate graphical.target
-
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