0128.html 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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,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">
  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. <meta name="revised" content="04/06/2022 09:01:31 PM" />
  12. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  13. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  14. <script type="text/javascript" src="includes/js/steps.js"></script>
  15. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  16. </head>
  17. <body>
  18. <div id="gridContainer">
  19. <div class="topMargin"></div>
  20. <div id="listName" class="topMargin">
  21. <h1>Install Gnome Desktop Environment (Ubuntu/Fedora) on Armbian</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <ol>
  26. <li>Log into Armbian</li>
  27. <li>Launch a terminal window and run the following commands:
  28. <div class="codeBlock"># update software repositories<br />
  29. sudo apt update<br />
  30. # install available software updates<br />
  31. sudo apt upgrade<br />
  32. # clean apt cache<br />
  33. sudo apt clean<br />
  34. # install lxdm and gnome<br />
  35. sudo apt install lxdm gnome-desktop</div>
  36. </li>
  37. <li>After the system reboots, you should be greeted with a different login screen</li>
  38. <li>There is now an option to log into the gnome desktop environment
  39. <ol start="1" style="list-style-type: lower-alpha;">
  40. <li>To set gnome as the default for all users, edit the /etc/lxdm/lxdm.conf file and add session=/usr/bin/gnome-session
  41. <div class="codeBlock"># edit lxdm config<br />
  42. sudo nano /etc/lxdm/lxdm.conf</div>
  43. <p>session=/usr/bin/gnome-session</p>
  44. </li>
  45. <li>To set gnome as the default just for the current user, edit the ~/.dmrc file setting Session=gnome
  46. <div class="codeBlock"># edit desktop config<br />
  47. sudo nano ~/.dmrc</div>
  48. <p>[Desktop]<br />
  49. Session=gnome</p>
  50. </li>
  51. </ol>
  52. </li>
  53. </ol>
  54. </div>
  55. </div>
  56. </body>
  57. </html>