Besides, you should have made some new years resolutions:
- Install Signal if you have a smartphone. It is good for safe communication.
- Watch some 32c2 CCC videos that you have not seen before.
- Use end-to-end mail encryption. Like OpenPGP.
:)
unzip 2015-05-05-raspbian-wheezy.zip
unmount /dev/sdb1 # this was only in our case. Use the sd* that fits your SD-card.
sudo dd bs=4M if=2015-05-05-raspbian-wheezy.img of=/dev/sdb
syncIf the card was remounted, unmount it again. Put it now into the Raspberry Pi, plug in Hub, keyboard, and network. We here use the wireless adapter. Therefore this has to be configured in /etc/network/interfaces. After changing the file, the service is restarted.
sudo nano /etc/network/interfacesChange this file to
auto lo
iface lo inet loopback
iface eth0 inet dhcp
auto wlan0
allow-hotplug wlan0
iface wlan0 inet dhcp
wpa-ap-scan 1
wpa-scan-ssid 1
wpa-ssid "WLAN-NAME"
wpa-psk "WLAN-KEY"And do the restart.
sudo service networking restartAfter this we need for ease-of-use and for automation the ssh-server capability.
sudo apt-get install openssh-serverHowever, this was not necessary for us. It seems to be pre-configured in raspbian.
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install git-core # was already newest version...
git clone git://git.drogon.net/wiringPi
cd wiringPi
./build
git clone https://github.com/r10r/rcswitch-pi.git
cd rcswitch-pi
make
git clone https://github.com/Boltzmann/piphie.git
cd
mkdir bin
ln -s /home//rcswitch-pi/send .
ln -s /home/To have easy ssh access on the raspberry use authentificaton with keys. In short, you need/ piphie/switch .
ssh-keygen
ssh-copy-id -i .ssh/Now, load FunkySwitch, add your key into "SPECIALS"-"IMPORT RSA KEY", in settings specify.pub @