Auch wenn das hier eine Alleinunterhaltung wird, hoffe ich das andere damit geholfen ist.
Ich habe mir nun eine Datei gemacht, mit schritten die ich durchgehen muss bei einer Neuinstallation, diese soll mir helfen wenn es dann irgendwann klappt meinen Fehler zu finden.
Das Image was ich nutze ist das RaspiImage vom 28.01.2019 auf der download Seite von IOBROKER
Diese Schritte führe ich nach dem ersten neustart aus. Die Änderungen in /boot/ kann man davor ja schon machen.
# Speicher ausweiten - Filesystem expand
sudo raspi-config
# RAM erweitern indem das man Grafikspeicher auf 16M reduziert
sudo raspi-config
# Debian update und upgrade
sudo apt-get update && sudo apt-get upgrade
# Zertifikate reinstall
sudo apt install --reinstall ca-certificates
# ZWave Pakete
apt-get install pkg-config libudev-dev build-essential curl unzip mc
# node testen - https://nodejs.org/en/ siehe auch hier: https://www.iobroker.net/#de/documentation/install/linux.md
node -v
nodejs -v
npm -v
sudo apt-get --purge remove node
sudo apt-get --purge remove nodejs
sudo apt-get autoremove
sudo reboot
# node aktualisieren
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
sudo apt install -y nodejs
sudo reboot
# ZWave Einstellungen
sudo nano /boot/cmdline.txt
remove console=serial0,115200
# save the file and close it
sudo nano /boot/config.txt
# Look for each of the following lines. If they are commented out with a #, remove that. If they don't exist, add them to the end of the file:
dtoverlay=pi3-miniuart-bt
enable_uart=1
force_turbo=1
# diese sollen BT und WIFI abschalten
dtoverlay=pi3-disable-wifi
dtoverlay=pi3-disable-bt
# save the file and close it
sudo reboot
# abschalten des BT Dienstes!
sudo systemctl disable hciuart
sudo reboot
# ioBroker update
cd /opt/iobroker
sudo iobroker stop
sudo iobroker update
sudo iobroker upgrade self
sudo iobroker start
# Info Adapter installieren
sudo iobroker add info 0
# Adpapter updaten
sudo iobroker upgrade discovery
# Adapter ZWave installieren
sudo iobroker add zwave --host ioBroker-Pi
# Adapter Unifi installieren
sudo iobroker add unifi --host ioBroker-Pi
# Adapter RPI2
sudo iobroker add rpi2 --host ioBroker-Pi
# Admin Oberfläche öffnen
Vielleicht hilft es jemanden meinen Fehler zu finden oder mir zu helfen. Ansonsten werde ich mal schauen was ich noch so hinbekomme.
Gruß
Chris