#!/bin/bash # Add our key to the list of trusted keys in Apt. This is used to authenticate our packages. wget http://apps.control2net.com/apt/dingo-pubkey.asc apt-key add dingo-pubkey.asc # Add our repository to Apt. echo 'deb http://apps.control2net.com/apt/ raspbian main' >> /etc/apt/sources.list # Then update the repository list and other in Apt. apt-get update # We are then ready to go and use apt-get install # Install dingo-stack. apt-get -y install dingo-stack # Install dingo-stack networking setup. apt-get -y install dingo-stack-networking # Install dingo-stack adafruit setup (LCD). apt-get -y install dingo-stack-adafruit