123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <!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>
-
|