In the previous post I wireless installed a clean version of Raspbian on a Raspbian Pi 3.
Now it’s time to do something usefull with this clean install, like install domoticz.
In this post I will layout the steps needed to do this
This post is mostly a copy paste from the official article found here…
mkdir ~/domoticz cd ~/domoticz wget http://www.domoticz.com/releases/release/domoticz_linux_armv7l.tgz tar xvfz domoticz_linux_armv7l.tgz rm domoticz_linux_armv7l.tgz sudo cp domoticz.sh /etc/init.d sudo chmod +x /etc/init.d/domoticz.sh sudo update-rc.d domoticz.sh defaults sudo ./domoticz sudo service domoticz.sh start