Arbeitsschritte nach der Installation von Trixie Lite auf RPi ich habe vorher root Rechte vergeben, daher alle Befehle ohne sudo eventuell ist in der Console noch ein "sudo su" nötig ------------------------------------------------------------ apt update && apt upgrade && apt dist-upgrade && apt full-upgrade && rpi-update && apt autoclean && apt autoremove ------------------------------------------------------------ raspi-config: Locale einrichten Interface einrichten Logging auf None reboot ------------------------------------------------------------ Pigpiod: Datei "pigpiod.service" erstellen: /usr/lib/systemd/system/pigpiod.service (wird nur bei bei 64Bit von make install nicht mehr installiert) ------------------------------------------------------------ Inhalt bei 64Bit: [Unit] Description=Daemon required to control GPIO pins via pigpio [Service] ExecStart=/usr/local/bin/pigpiod -t0 ExecStop=/bin/systemctl kill pigpiod Restart=always Type=forking [Install] WantedBy=multi-user.target ------------------------------------------------------------ Inhalt bei 32Bit: [Unit] Description=Daemon required to control GPIO pins via pigpio [Service] ExecStart=/usr/bin/pigpiod ExecStop=/bin/systemctl kill pigpiod Restart=always Type=forking [Install] WantedBy=multi-user.target ------------------------------------------------------------ Pigpiod installieren: apt install -y python3-setuptools python3-full wget https://github.com/joan2937/pigpio/archive/refs/heads/develop.zip (dies ist die letzte mir bekannte Version und soll einen Bugfix für Raspberry Pi4 enthalten) unzip develop.zip cd pigpio-develop make make install ldconfig systemctl daemon-reload systemctl enable --now pigpiod ------------------------------------------------------------ reboot ------------------------------------------------------------ Kontrolle: systemctl status pigpiod systemctl status --failed systemctl status systemctl is-active pigpiod (active/inactive) ------------------------------------------------------------ Symcon installieren: wget -qO- https://apt.symcon.de/symcon.key | gpg --dearmor | sudo tee /usr/share/keyrings/symcon.gpg > /dev/null wget -qO- https://apt.symcon.de/install.sh | bash /dev/stdin apt update apt install symcon Wie starte und stoppe ich den IP-Symcon-Dienst? /etc/init.d/symcon start /etc/init.d/symcon stop /etc/init.d/symcon restart systemctl disable symcon /lib/systemd/systemd-sysv-install disable symcon ------------------------------------------------------------ Lizenz installieren: IP Symcon Verwaltungskonsole Information Lizenz ändern E-Mail-Adresse Lizenzdatei licence.txt ------------------------------------------------------------ Eventuell vorhandene Konfiguation einpielen: Symcon stoppen: /etc/init.d/symcon stop Einstellungen aus Backup installieren: /var/lib/symcon/settings.json Symcon starten: /etc/init.d/symcon start ------------------------------------------------------------ Module installieren: https://github.com/pjotrweliki/SymconModules usw. ------------------------------------------------------------ Wer schon ein Symcon installiert hat braucht auch nur in "Kern Instanzen" -> "Module" -> das Modul von JPaeper löschen Die Instanzen nicht löschen! und https://github.com/pjotrweliki/SymconModules als neues Modul einrichten. Bei nichtgefallen anders herum: https://github.com/Joey-1970/SymconModules ------------------------------------------------------------