User Tools

Site Tools


systems:raspberrypi

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
systems:raspberrypi [2021/11/14 01:05] – [MagicMirror] superwizardsystems:raspberrypi [2025/01/10 21:42] (current) – [Remote Desktop Connection to Raspberry Pi] superwizard
Line 1: Line 1:
 +====== Raspberry Pi ======
 +
 +------------------------------------------------------------------------------------------------------------------------------------------------\\
 +
 +====== Remote Desktop Connection to Raspberry Pi ======
 +
 +<WRAP center round box >
 +2023-10-24
 +
 +Installing the Remote Desktop Server on the Raspberry Pi
 +
 +4. However, we are required to make a user in which you will use for your remote desktop connection to your Raspberry Pi. The default user you create does not work with XRDP.
 +
 +    sudo adduser USERNAME
 +
 +
 +From <https://pimylifeup.com/raspberry-pi-remote-desktop/> 
 +
 +sudo apt install xrdp
 +
 +From <https://pimylifeup.com/raspberry-pi-remote-desktop/> 
 +
 +
 +Overview
 +xrdp provides a graphical login to remote machines using RDP (Microsoft Remote Desktop Protocol). xrdp accepts connections from variety of RDP clients: FreeRDP, rdesktop, NeutrinoRDP and Microsoft Remote Desktop Client (for Windows, macOS, iOS and Android).
 +
 +From <https://www.xrdp.org/> 
 +</WRAP>
 + 
 +
 +
 ====== Raspberry Pi General Commands ====== ====== Raspberry Pi General Commands ======
  
Line 6: Line 37:
 There are certain Pi commands which can be used whenever you boot up your Raspberry Pi or between some of the codings. That does not mean you have to write them in the Raspberry Pi terminal every single time though. There are certain Pi commands which can be used whenever you boot up your Raspberry Pi or between some of the codings. That does not mean you have to write them in the Raspberry Pi terminal every single time though.
  
-apt-get update+apt update
  
-apt-get upgrade+apt upgrade
  
 date (shows the current date of your system) date (shows the current date of your system)
Line 20: Line 51:
 <WRAP center round box > <WRAP center round box >
  
-    sudo apt-get update +    sudo apt update 
-    sudo apt-get install xscreensaver+    sudo apt install xscreensaver
  
 When installed open from menu [Preferences] --> [Screensaver] When installed open from menu [Preferences] --> [Screensaver]
Line 54: Line 85:
 ====== MagicMirror ====== ====== MagicMirror ======
 <WRAP center round box > <WRAP center round box >
 +
 +2024-11-14
 +
 +Start
 +
 +Installing NodeJS on the Raspberry Pi
 +
 +From <https://pimylifeup.com/raspberry-pi-nodejs/> 
 +
 +
 +Manual Installation
 + 1. Download and install a required (opens new window)Node.js version, see the official documentation:
 + • Linux based distributions(opens new window)
 + • Others(opens new window)
 + 2. check if git is installed on your machine by executing git (should show usage), otherwise install it
 + 3. Clone the repository: git clone https://github.com/MagicMirrorOrg/MagicMirror
 + 4. Enter the repository: cd MagicMirror/
 + 5. Install the application: npm run install-mm
 + 6. Make a copy of the config sample file: cp config/config.js.sample config/config.js
 + 7. Start the application: npm run start
 +
 +You can check your configuration running 
 +
 +    npm run config:check
 +
 +in ~/MagicMirror.
 +
 +
 +For Server Only use: npm run server
 +
 +From <https://docs.magicmirror.builders/getting-started/installation.html#manual-installation> 
 +
 +
 +    chown -R pi:pi MagicMirror
 +
 +
  
 2018-12-03 2018-12-03
Line 67: Line 134:
 Commands Commands
  
-    Ctrl+M To stop the minimize Mirror+    Ctrl+M To stop the Mirror
     Ctrl+C to Stop     Ctrl+C to Stop
  
Line 78: Line 145:
  
 From <https://github.com/AgP42/MMM-SmartWebDisplay>  From <https://github.com/AgP42/MMM-SmartWebDisplay> 
 +
 +
 +3rd Party Modules
 +Ronald Record edited this page 9 days ago · 844 revisions 
 +
 +From <https://github.com/MichMich/MagicMirror/wiki/3rd-party-modules> 
 +
 +
 +**Configure displayed stuff **
 +
 +To use this module, add the following configuration block to the modules array in the config/config.js file:
 +
 +From <https://github.com/appdevelopmentandsuch/MMM-Thingiverse> 
 +
  
  
Line 83: Line 164:
          
  
 +====== Raspberry Pi Kiosk using Chromium ======
  
 +<WRAP center round box >
 +2021-07-11
 +
 +
 +by Gus
 +Updated May 15, 2021
 +
 +From <https://pimylifeup.com/raspberry-pi-kiosk/> 
 +
 +
 +nano /home/pi/kiosk.sh
 +
 +
 +<code>
 +#!/bin/bash 
 +xset s noblank 
 +xset s off 
 +xset -dpms 
 +unclutter -idle 0.5 -root & 
 +sed -i 's/"exited_cleanly":false/"exited_cleanly":true/' /home/pi/.config/chromium/Default/Preferences 
 +sed -i 's/"exit_type":"Crashed"/"exit_type":"Normal"/' /home/pi/.config/chromium/Default/Preferences 
 +
 +/usr/bin/chromium-browser --noerrdialogs --disable-infobars --kiosk https://pimylifeup.com https://www.adafruit.com & 
 +
 +while true; do 
 +    xdotool keydown ctrl+Tab; xdotool keyup ctrl+Tab; 
 +    sleep 10 
 +done
 +</code>
 +From <https://pimylifeup.com/raspberry-pi-kiosk/> 
 +
 +
 +Also:
 +
 +Setting up the Raspberry Pi Kiosk to start at boot
 +
 +From <https://pimylifeup.com/raspberry-pi-kiosk/> 
 +
 +
 +
 +</WRAP>
  
 ====== Screen Saver On the Raspberry Pi Desktop ====== ====== Screen Saver On the Raspberry Pi Desktop ======
systems/raspberrypi.1636851957.txt.gz · Last modified: by superwizard