Vor kurzem hatte ich kurz verlinkt, wie man auf dem Raspberry Pi Shairport installieren kann, um dann Airplay mit iOS Geräten nutzen zu können. Leider funktionierte das mit dem Update auf iOS 6 nicht mehr.

Dafür gibt es jetzt aber eine Lösung, die ich hier gefunden habe:

sudo su
cd /etc/init.d
./shairport stop
cd
mv shairport shairport_old
aptitude install libmodule-build-perl
git clone https://github.com/njh/perl-net-sdp.git perl-net-sdp
cd perl-net-sdp
perl Build.PL
./Build
./Build test
./Build install
cd
git clone https://github.com/hendrikw82/shairport.git shairport
# and the rest is repeating the install instructions from the trouch.com post
cd shairport
./shairport.pl -a AirPi
# check it works then Ctrl-C
make install
cp shairport.init.sample /etc/init.d/shairport
cd /etc/init.d
chmod a+x shairport
update-rc.d shairport defaults
nano shairport
# edit DAEMON_ARGS line: eg DAEMON_ARGS=”-w $PIDFILE -a AirPi”
./shairport start

Danach hat bei mir wieder alles funktioniert.


Weitere Artikel