0506.html 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Install KDE Plasma Desktop Environment 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="KDE Plasma On Armbian,Desktop Environment,Armbian,Linux,Single Board Computer,Debian,Ubuntu,KDE Plasma,Desktop,SBC,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Install KDE Plasma Desktop Environment 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 KDE Plasma Desktop Environment 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">sudo apt update<br />
  28. sudo apt upgrade -y<br />
  29. sudo apt clean<br />
  30. sudo apt install kde-plasma-desktop kde-window-manager plasma-nm -y --no-install-recommends<br />
  31. sudo reboot now</div>
  32. </li>
  33. <li>After the system reboots, there should now be an option to log into the kde desktop environment
  34. <ol start="1" style="list-style-type: lower-alpha;">
  35. <li>To set kde-plasma as the default for all users, edit the lightdm configuration file and change the user-session value from xfce to kde-plasma
  36. <div class="codeBlock">sudo nano /etc/lightdm/lightdm.conf.d/22-armbian-autologin.conf</div>
  37. user-session=kde-plasma</li>
  38. </ol>
  39. </li>
  40. <li><span id="li_114781_36">Press CTRL+O, Enter, CTRL+X to write the changes to </span>22-armbian-autologin.conf</li>
  41. <li>Reboot again to verify kde-plasma is now the default desktop environment</li>
  42. </ol>
  43. </div>
  44. </div>
  45. </body>
  46. </html>