Setup mate » Historie » Version 2
Jeremias Keihsler, 09.04.2018 23:16
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 | 2 | Jeremias Keihsler | reboot |
21 | 1 | Jeremias Keihsler | </code></pre> |
22 | |||
23 | Tell your system to start the Graphical Interface |
||
24 | |||
25 | <pre><code class="bash"> |
||
26 | systemctl isolate graphical.target |
||
27 | </code></pre> |
||
28 | |||
29 | 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). |
||
30 | |||
31 | <pre><code class="bash"> |
||
32 | systemctl set-default graphical.target |
||
33 | rm '/etc/systemd/system/default.target' |
||
34 | ln -s '/usr/lib/systemd/system/graphical.target' '/etc/systemd/system/default.target' |
||
35 | </code></pre> |
||
36 | |||
37 | 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 |
||
38 | |||
39 | <pre><code class="bash"> |
||
40 | yum install gnome-disk-utility |
||
41 | </code></pre> |