Raspberry Pi AirPlay setup
It took a while to find a reliable ‘set it and leave it’ configuration for my Pi-powered AirPlay network. Here’s the config I settled on, with thanks to Ray Wenderlich and Pi My Life Up.
Update: I’m no longer using this config because Shairport doesn’t support AirPlay 2 for multi-room synchronisation. A set of second-hand AirPort Expresses have taken up the role with no problems to report.
Write disk image to SD card (or just use Etcher)
- Identify the address of your SD card.
df -h
- Unmount the card with, replacing ‘disk1s1’ with your SD card address.
sudo diskutil unmount /dev/disk1s1
- Write the image to the card, replacing the image location and disk address.
sudo dd bs=5m if=~/Downloads/wheezy-raspbian.img of=/dev/disk1s1
- Pop the card into the RPi and boot up.
Update everything
sudo apt-get update
sudo apt-get upgrade
sudo dpkg --configure -a