0738.html 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Install Raspberry Pi PIXEL Desktop/Theme on Debian</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="Install Guide,Raspberry Pi Alternative,Raspberry Pi Desktop On Debian,Linux,Debian,Raspbian Theme,Raspberry Pi OS Theme,Raspberry Pi Lookaliike,Raspberry Pi Imposter,PIXEL Desktop,LXDE,Desktop Environment,Raspberry Pi Theme On Debian,Raspberry Pi Skin,Raspberry Pi Desktop Environment,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Install Raspberry Pi PIXEL Desktop/Theme on Debian">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="05/15/2022 08:50:03 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 Raspberry Pi PIXEL Desktop/Theme on Debian</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <h2>What is PIXEL?</h2>
  26. <blockquote>PIXEL is the default desktop environment and theme used by Raspberry Pi OS. It officially stands for &quot;<strong>P</strong>i <strong>I</strong>mproved <strong>X</strong>windows <strong>E</strong>nvironment, <strong>L</strong>ightweight&quot; and is based on LXDE<em>. -<a href="https://www.raspberrypi.com/news/introducing-pixel/" target="_blank">https://www.raspberrypi.com/news/introducing-pixel/</a></em></blockquote>
  27. <ol>
  28. <li>Log into the Debian device</li>
  29. <li>Run the following commands in a terminal
  30. <div class="codeBlock"># add the raspberry pi os gpg key<br />
  31. wget -O - http://archive.raspberrypi.org/debian/raspberrypi.gpg.key | sudo apt-key add -<br />
  32. # add the raspberry pi os apt repository<br />
  33. echo deb http://archive.raspberrypi.org/debian/ $(lsb_release -cs) main | sudo tee /etc/apt/sources.list.d/raspios.list<br />
  34. # update repositories<br />
  35. sudo apt update<br />
  36. # install pixel<br />
  37. sudo apt install raspberrypi-ui-mods -y</div>
  38. </li>
  39. <li>When prompted, press Enter to configure the display manager</li>
  40. <li>Arrow down to select lightdm and press Enter</li>
  41. <li>After the installation completes, reboot the system</li>
  42. <li>Upon boot, the familiar Raspberry Pi login screen should be display</li>
  43. <li>Login</li>
  44. <li>Welcome to the PIXEL desktop experience</li>
  45. </ol>
  46. </div>
  47. </div>
  48. </body>
  49. </html>