My streaming machines all have Pulse Audio disabled since it is an unnecessary extra layer of complication.
I presume the reboot issues you are having relate to increasing the size of the kernel asound prealloc buffer?
If so, I solved that problem by having a small script executed at startup as follows:

#!/bin/sh
PCM_ID="/proc/asound/card0/pcm0p/sub0/prealloc"
LOGFILE="/home/username/prealloc.status"
BUFSIZE="1024"

if [ -f $LOGFILE ]; then
        rm $LOGFILE
fi

# Adjust playback buffer
if [ -f $PCM_ID ]; then
        echo "Success: $PCM_ID ($BUFSIZE)" > $LOGFILE
        echo $BUFSIZE > $PCM_ID
else
        echo "Failure: $PCM_ID ($BUFSIZE)" > $LOGFILE
fi

Obviously you are going to need to edit the LOGFILE destination, but I find it works pretty well when called from /etc/rc.local

__._,_.___

Posted by: gnorbury@bondcar.com
Reply via web post Reply to sender Reply to group Start a New Topic Messages in this topic (2)

Have you tried the highest rated email app?
With 4.5 stars in iTunes, the Yahoo Mail app is the highest rated email app on the market. What are you waiting for? Now you can access all your inboxes (Gmail, Outlook, AOL and more) in one place. Never delete an email again with 1000GB of free cloud storage.


.

__,_._,___