if you get tls handshake errors, pandora changed their certificate. this website has the answer:
http://everyday-tech.com/how-to-inst...-raspberry-pi/
run this in linux:
<code>
#!/bin/bash
##
## A simple little shell script that will return the current
## fingerprint on the SSL certificate. It's crude but works

##
## Author: Bob Saska (r35krag0th) <git@r35.net>
openssl s_client -connect tuner.pandora.com:443 < /dev/null 2> /dev/null | \
openssl x509 -noout -fingerprint | tr -d ':' | cut -d'=' -f2
</code>
this will show a code...
this is the string to add to '.config/pianobar/config':
"tls_fingerprint = 2D0AFDAFA16F4B5C0A43F3CB1D4752F9535507C0"
edit: OOPS it's a tls READ error, which needs a rebuild. according to the web, it needs to be built against ffmpeg from source first:
http://www.lanmaster53.com/2014/05/r...y-pi-pianobar/
since the pi's have an ARM, seems reasonable to give it a shot. FFMPEG will take a LONG time...
we'll see. I AM on vacation...