Mit Gefühl

Raspberry Pi als Stream-Fernbedienung

c't 22/2021, S. 154

----------------------------------------------------------------

Befehle aus dem Artikel:

### Entwicklungspakete und Node.js installieren
# sudo apt-get install libgusb-dev git build-essential cmake libudev-dev libusb-1.0-0-dev curl
# curl -fsSL https://deb.nodesource.com/setup_14.x | sudo -E bash -
# sudo apt-get install nodejs
# sudo npm install yarn -g
# export PATH="$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH"

### Companion klonen und übersetzen
# git clone https://github.com/bitfocus/companion.git
# cd companion/
# yarn update
# ./tools/build_writefile.sh

### Zugriffsrechte für Elgato Stream Deck neu laden:
# sudo udevadm control --reload-rules

### Systemd-Job für Companion aktivieren:
# sudo systemctl daemon-reload
# sudo systemctl enable companion.service
# sudo systemctl start companion.service

