0128.html 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Install Gnome Desktop Environment (Ubuntu/Fedora) on Armbian</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="Armbian.,Debian,Linux,Single Board Computer,Raspberry Pi Alternative,Gnome,Desktop Environment">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Install Gnome Desktop Environment (Ubuntu/Fedora) on Armbian">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  12. <script type="text/javascript" src="includes/js/steps.js"></script>
  13. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  14. </head>
  15. <body>
  16. <div id="gridContainer">
  17. <div class="topMargin"></div>
  18. <div id="listName" class="topMargin">
  19. <h1>Install Gnome Desktop Environment (Ubuntu/Fedora) on Armbian</h1>
  20. </div>
  21. <div></div>
  22. <div id="content">
  23. <ol>
  24. <li>Log into Armbian</li>
  25. <li>Launch a terminal window and run the following commands:
  26. <div class="codeBlock"># update software repositories<br />
  27. sudo apt update<br />
  28. # install available software updates<br />
  29. sudo apt upgrade<br />
  30. # clean apt cache<br />
  31. sudo apt clean<br />
  32. # install lxdm and gnome<br />
  33. sudo apt install lxdm gnome-desktop</div>
  34. </li>
  35. <li>After the system reboots, you should be greeted with a different login screen</li>
  36. <li>There is now an option to log into the gnome desktop environment
  37. <ol start="1" style="list-style-type: lower-alpha;">
  38. <li>To set gnome as the default for all users, edit the /etc/lxdm/lxdm.conf file and add session=/usr/bin/gnome-session
  39. <div class="codeBlock"># edit lxdm config<br />
  40. sudo nano /etc/lxdm/lxdm.conf</div>
  41. <p>session=/usr/bin/gnome-session</p>
  42. </li>
  43. <li>To set gnome as the default just for the current user, edit the ~/.dmrc file setting Session=gnome
  44. <div class="codeBlock"># edit desktop config<br />
  45. sudo nano ~/.dmrc</div>
  46. <p>[Desktop]<br />
  47. Session=gnome</p>
  48. </li>
  49. </ol>
  50. </li>
  51. </ol>
  52. </div>
  53. </div>
  54. </body>
  55. </html>