Projekt

Allgemein

Profil

Setup mate » Historie » Version 3

Jeremias Keihsler, 12.04.2019 14:09

1 1 Jeremias Keihsler
h1. Install Procedure for MATE Desktop Environment
2
3
h2. Requirements
4
5
To install apache you will need the following:
6
* a installed and supported operating system (e.g. CentOS 7.x)
7
* root-access
8
* a fast internet connection
9 3 Jeremias Keihsler
* repo: [[repo_epel|EPEL]]
10 1 Jeremias Keihsler
11
h2. Preliminary Note
12
13
MATE is a lightweight alternative to GNOME-Desktop. It is assumed that there is no other Desktop-Environment installed.
14
15
h2. Install 
16
17
<pre><code class="bash">
18
yum groupinstall "Development Tools"
19
yum groupinstall "X Window system"
20
yum groupinstall "MATE Desktop"
21 2 Jeremias Keihsler
reboot
22 1 Jeremias Keihsler
</code></pre>
23
24
Tell your system to start the Graphical Interface
25
26
<pre><code class="bash">
27
systemctl isolate graphical.target
28
</code></pre>
29
30
To have MATE boot up as the default desktop enviroment, enter the following command (the last two lines will spit out into the terminal when you run the first line). 
31
32
<pre><code class="bash">
33
systemctl set-default graphical.target
34
rm '/etc/systemd/system/default.target'
35
ln -s '/usr/lib/systemd/system/graphical.target' '/etc/systemd/system/default.target'
36
</code></pre>
37
38
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 
39
40
<pre><code class="bash">
41
yum install gnome-disk-utility
42
</code></pre>