forked from i12bretro/tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
0128.html
60 lines (57 loc) · 2.68 KB
/
0128.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Install Gnome Desktop Environment (Ubuntu/Fedora) on Armbian</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta charset="UTF-8">
<meta name="keywords" content="Armbian,Debian,Linux,Single Board Computer,Raspberry Pi Alternative,Gnome,Desktop Environment,Ubuntu,Desktop,SBC,Install Guide,Amlogic,ARM,ARM64,AARCH64,ARM CPU,System On A Chip,SOC,ARM Processor,ARM Architecture,Single Board Computer AARCH64,ARMv8,SD Card,Android TV Box,How To,Tutorial,i12bretro">
<meta name="author" content="i12bretro">
<meta name="description" content="Install Gnome Desktop Environment (Ubuntu/Fedora) on Armbian">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="revised" content="04/06/2022 09:01:31 PM" />
<link rel="icon" type="image/x-icon" href="includes/favicon.ico">
<script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script type="text/javascript" src="includes/js/steps.js"></script>
<link href="css/steps.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="gridContainer">
<div class="topMargin"></div>
<div id="listName" class="topMargin">
<h1>Install Gnome Desktop Environment (Ubuntu/Fedora) on Armbian</h1>
</div>
<div></div>
<div id="content">
<ol>
<li>Log into Armbian</li>
<li>Launch a terminal window and run the following commands:
<div class="codeBlock"># update software repositories<br />
sudo apt update<br />
# install available software updates<br />
sudo apt upgrade<br />
# clean apt cache<br />
sudo apt clean<br />
# install lxdm and gnome<br />
sudo apt install lxdm gnome-desktop</div>
</li>
<li>After the system reboots, you should be greeted with a different login screen</li>
<li>There is now an option to log into the gnome desktop environment
<ol start="1" style="list-style-type: lower-alpha;">
<li>To set gnome as the default for all users, edit the /etc/lxdm/lxdm.conf file and add session=/usr/bin/gnome-session
<div class="codeBlock"># edit lxdm config<br />
sudo nano /etc/lxdm/lxdm.conf</div>
<p>session=/usr/bin/gnome-session</p>
</li>
<li>To set gnome as the default just for the current user, edit the ~/.dmrc file setting Session=gnome
<div class="codeBlock"># edit desktop config<br />
sudo nano ~/.dmrc</div>
<p>[Desktop]<br />
Session=gnome</p>
</li>
</ol>
</li>
</ol>
</div>
</div>
</body>
</html>