Installing Raspberry
For this project we will use raspbarian, which is a debian distribution designed for the rasberry platform.
Initial installation
The official installation instructions are found here.
Start by downloading the latest Raspbian Jessie, and then follow the installation instructions from the official guide.
Post-installation steps
-
Enable SSH
Follow this guide
-
Change the hostname
sudo nano /etc/hostname
change it to
raspberryXX
, where XX is your groupnumber -
Change your password
passwd
(notice that we are not using
sudo
for this) -
Reboot
sudo reboot
You should now be able to access your raspberry by hostname, ie. ping raspberryXX
.