Hi,
I was running Shairport perfectly on RPi with iOS devices running iOS 5. I've upgraded my iPad to iOS 6 and it don't work anymore. iOS 6 bricks Shairport. When i restart Shairport I can use it from iTunes on my PC and from my iPod using iOS 5. I'm running Shairport on Raspbian!
Did you see the same using iOS 6? Any suggestions?
Thomas
Shairport with iOS 6
14 posts
According to:
http://forum.stmlabs.com/showthread.php?tid=1709&pid=16140#pid16140
"This is a known issue with shairport. See https://github.com/albertz/shairport/issues/157 or https://github.com/albertz/shairport/pull/152 for fix"
Don.
http://forum.stmlabs.com/showthread.php?tid=1709&pid=16140#pid16140
"This is a known issue with shairport. See https://github.com/albertz/shairport/issues/157 or https://github.com/albertz/shairport/pull/152 for fix"
Don.
- Posts: 5
- Joined: Wed Apr 25, 2012 11:51 am
I wish I understood how to apply the suggested cures
- Posts: 51
- Joined: Mon Jan 30, 2012 7:01 pm
dontod wrote:According to:
http://forum.stmlabs.com/showthread.php?tid=1709&pid=16140#pid16140
"This is a known issue with shairport. See https://github.com/albertz/shairport/issues/157 or https://github.com/albertz/shairport/pull/152 for fix"
Don.
Same here, I did try this this morning, without success. I think that because I don't understand what to do exactly. Could someone who's able to understand tell us exactly what to do?
Thanks a lot,
Thomas
truehl
http://www.squeezeplug.de
http://www.squeezeplug.de
I tried and failed as well trying to to fix this.
Got stuck on the cpan install Net::SDP part of the fix.
My guess with all the iOS devices moving to ios6 in the next few days this will become an issue for lots of people.
Don.
Got stuck on the cpan install Net::SDP part of the fix.
My guess with all the iOS devices moving to ios6 in the next few days this will become an issue for lots of people.
Don.
- Posts: 5
- Joined: Wed Apr 25, 2012 11:51 am
Hi
I installed the iOS6 version when I first got it, I wasn't able to install net::SDP either.
I'm sure I managed to solve the issue by upgrading cpan. I think I got to this by googling the error I got... But I can recall what that was, so try that?
I'll go through my history to see if I can find it.
I installed the iOS6 version when I first got it, I wasn't able to install net::SDP either.
I'm sure I managed to solve the issue by upgrading cpan. I think I got to this by googling the error I got... But I can recall what that was, so try that?
I'll go through my history to see if I can find it.
- Posts: 2
- Joined: Fri Sep 14, 2012 6:18 pm
I had this problem, I think I resolved it by updating cpan:
# install CPAN
# reload cpan
I did it a while ago, so if that doesn't work, say so and I'll dig back through my web browsing history!!
# install CPAN
# reload cpan
I did it a while ago, so if that doesn't work, say so and I'll dig back through my web browsing history!!
- Posts: 2
- Joined: Fri Sep 14, 2012 6:18 pm
simonmullan wrote:I had this problem, I think I resolved it by updating cpan:
# install CPAN
# reload cpan
I did it a while ago, so if that doesn't work, say so and I'll dig back through my web browsing history!!
Sorry, but we need some clearer instructions! I can't get it working, did someone else succeed?
truehl
http://www.squeezeplug.de
http://www.squeezeplug.de
Here's how I updated to the hendrikw82 version of shairport, which seems to work with iOS6. It assumes you followed the process at http://trouch.com/2012/08/03/airpi-airp ... -raspberry (and check out the comments about iOS6 on that page - maybe soon the regular version of shairport will by updated too.)
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
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
- Posts: 1
- Joined: Sun Sep 23, 2012 12:44 pm
Thanks, this worked for me and fixed the issue I was having with shairport crashing when trying to play music from ios6 on the iphone5.
- Posts: 2
- Joined: Mon Sep 24, 2012 12:11 pm
Hi everyone, I've created the deb version of the perl Net::sdp library and also I compiled shairport into a deb package.
The shairport package includes a daemon that start it at boot.
At this point, dpkg may says that need more dependencies, to solve you should run:
Enjoy it!
The shairport package includes a daemon that start it at boot.
- Code: Select all
wget http://www.inf.udec.cl/~diegocaro/rpi/libnet-sdp-perl_0.07-1_all.deb
wget http://www.inf.udec.cl/~diegocaro/rpi/shairport_0.05-1_armhf.deb
sudo dpkg -i libnet-sdp-perl_0.07-1_all.deb
sudo dpkg -i shairport_0.05-1_armhf.deb
At this point, dpkg may says that need more dependencies, to solve you should run:
- Code: Select all
sudo apt-get -f install
Enjoy it!
Much appreciated diegocaro!
- Posts: 1
- Joined: Fri Jul 27, 2012 9:25 pm
diegocaro wrote:Hi everyone, I've created the deb version of the perl Net::sdp library and also I compiled shairport into a deb package.
The shairport package includes a daemon that start it at boot.
- Code: Select all
wget http://www.inf.udec.cl/~diegocaro/rpi/libnet-sdp-perl_0.07-1_all.deb
wget http://www.inf.udec.cl/~diegocaro/rpi/shairport_0.05-1_armhf.deb
sudo dpkg -i libnet-sdp-perl_0.07-1_all.deb
sudo dpkg -i shairport_0.05-1_armhf.deb
At this point, dpkg may says that need more dependencies, to solve you should run:
- Code: Select all
sudo apt-get -f install
Enjoy it!
Great work, works like a charm! Thanks a lot for it! If you don't mind, I would like to use your .deb files in my SqueesePlug project! And one other question: Is it possible to build these .deb files also for Debian Soft Float? That would be great, because the other device I'm supporting with SqueezePlug are not Debian Hf!
Thanks a lot Thomas
truehl
http://www.squeezeplug.de
http://www.squeezeplug.de
truehl wrote:Great work, works like a charm! Thanks a lot for it! If you don't mind, I would like to use your .deb files in my SqueesePlug project! And one other question: Is it possible to build these .deb files also for Debian Soft Float? That would be great, because the other device I'm supporting with SqueezePlug are not Debian Hf!
Thanks a lot Thomas
First, you are free to use the .deb files wherever you want, that's the idea!
I think that is possible to build deb files for soft float, but for now I will not provide the sources (I'm trying to learn more about the Debian packaging system to provide a high quality deb sources).
Greetings from Chile!