To run the config from the command line: sudo raspi-config
Steps to install Webmin
- Update Raspberry:
sudo apt-get update; sudo apt-get upgrade
- Need to install Perl and OpenSSL:
sudo apt-get install perl libnet-ssleay-perl openssl libauthen-pam-perl libpam-runtime libio-pty-perl apt-show-versions python
- Download Webmin:
mkdir webmin;cd webmin;wget http://downloads.sourceforge.net/project/webadmin/webmin/1.750/webmin-1.750.tar.gz
- Unzip:
tar -xzvf webmin-1.750.tar.gz
- Run install:
cd webmin-1.750;sudo ./setup.sh /usr/local/webmin
- Clean up:
cd; rm -rf webmin
Install OSPi (Source)
- Install git:
sudo apt-get install git
- Get OSPi:
git clone https://github.com/Dan-in-CA/OSPi
- To auto start program (the new way):
cd OSPi; sudo mv sipi.sh /etc/init.d/sip; sudo chmod +x /etc/init.d/sip; sudo update-rc.d sip defaults
- To auto start program (the old way):
cd OSPi; sudo mv ospi.sh /etc/init.d/ospi; sudo chmod +x /etc/init.d/ospi; sudo update-rc.d ospi defaults
Secure OpenSprinkler (Source) (work in progress)
- Generate Key:
sudo openssl genrsa -out /etc/ssl/private/server.key.pem 4096
- Generate certificate:
openssl req -new -key /etc/ssl/private/server.key.pem -out /etc/ssl/server.crt.pem