Projekt

Allgemein

Profil

Setup mate » Historie » Version 1

Jeremias Keihsler, 18.03.2017 14:24

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
10
h2. Preliminary Note
11
12
MATE is a lightweight alternative to GNOME-Desktop. It is assumed that there is no other Desktop-Environment installed.
13
14
h2. Install 
15
16
<pre><code class="bash">
17
yum groupinstall "Development Tools"
18
yum groupinstall "X Window system"
19
yum groupinstall "MATE Desktop"
20
</code></pre>
21
22
Tell your system to start the Graphical Interface
23
24
<pre><code class="bash">
25
systemctl isolate graphical.target
26
</code></pre>
27
28
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). 
29
30
<pre><code class="bash">
31
systemctl set-default graphical.target
32
rm '/etc/systemd/system/default.target'
33
ln -s '/usr/lib/systemd/system/graphical.target' '/etc/systemd/system/default.target'
34
</code></pre>
35
36
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 
37
38
<pre><code class="bash">
39
yum install gnome-disk-utility
40
</code></pre>