- sudo apt install firefox xserver-xorg-legacy xserver-xorg # oder auch firefox-esr, je nach Verfügbarkeit
- git clone https://gitli.stratum0.org/kasalehlia/s0infodisplay/ # macht lokal einen HTTP-Server und baut die HTML-Seite
- git clone https://github.com/rohieb/infopoint-html.git # startet einen Firefox im Vollbild
- sudo cp s0infodisplay/s0infodisplay.service infopoint-html/infopoint-html.service /etc/systemd/system/
- sudo systemctl daemon-reload
- echo "allowed_users = anybody" | sudo tee /etc/X11/Xwrapper.config # systemd-logind session activation umgehen...
+
+Pakete installieren:
+ sudo apt -y install git firefox-esr xserver-xorg-legacy xserver-xorg x11-xserver-utils python3-rpi.gpio xinit libicu-dev unattended-upgrades cmake libp8-platform-dev libudev-dev
+ # oder auch 'firefox', je nach Verfügbarkeit
+
+Libcec mit RPI build system fix bauen:
+ git clone https://github.com/Emantor/libcec
+ cd libcec && mkdir build && cd build
+ cmake -DRPI_INCLUDE_DIR=/opt/vc/include -DRPI_LIB_DIR=/opt/vc/lib ..
+
+Darauf achten das nach dem cmake die Zeile
+ -- Raspberry Pi support: yes
+auf yes steht. Dann:
+ make
+ sudo make install
+ sudo ldconfig
+
+s0infodisplay macht lokal einen HTTP-Server und baut die HTML-Seite:
+ git clone https://gitli.stratum0.org/kasalehlia/s0infodisplay/
+ cd s0infodisplay/
+ virtualenv env
+ source env/bin/activate
+ pip install -r requirements.txt
+ python3 main.py
+
+infopoint-html startet einen Firefox im Vollbild:
+ cd
+ git clone https://github.com/rohieb/infopoint-html.git
+ echo -e '#!/bin/sh\nexec /home/pi/infopoint-html/src/infopoint-html' | sudo tee /usr/bin/infopoint-html
+ sudo chmod +x /usr/bin/infopoint-html