0128.html 2.4 KB

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