1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Install KDE Plasma Desktop Environment on Armbian</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta charset="UTF-8">
- <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">
- <meta name="author" content="i12bretro">
- <meta name="description" content="Install KDE Plasma Desktop Environment on Armbian">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <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 KDE Plasma Desktop Environment 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">sudo apt update<br />
- sudo apt upgrade -y<br />
- sudo apt clean<br />
- sudo apt install kde-plasma-desktop kde-window-manager plasma-nm -y --no-install-recommends<br />
- sudo reboot now</div>
- </li>
- <li>After the system reboots, there should now be an option to log into the kde desktop environment
- <ol start="1" style="list-style-type: lower-alpha;">
- <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
- <div class="codeBlock">sudo nano /etc/lightdm/lightdm.conf.d/22-armbian-autologin.conf</div>
- user-session=kde-plasma</li>
- </ol>
- </li>
- <li><span id="li_114781_36">Press CTRL+O, Enter, CTRL+X to write the changes to </span>22-armbian-autologin.conf</li>
- <li>Reboot again to verify kde-plasma is now the default desktop environment</li>
- </ol>
- </div>
- </div>
- </body>
- </html>
-
|