I am assuming you mean Flash player apps do not have sound?  In my case, 
for some reason flash player requires a particular file to exist:

/tmp/.esd/socket

If i issue the following commands as root:

mkdir /tmp/.esd
touch /tmp/.esd/socket

And then restart firefox/mozilla, sound will work.  I am of course 
assuming that you are running esd.
I created the following script that I run from cron every half hour that 
makes sure the file is always there.  It basically checks to see if that 
file is there, and creates it if not:

-- BEGIN --
#!/bin/sh

if [ ! -f /tmp/.esd/socket ]; then
  logger "/tmp/.esd/socket is missing. replacing..."
  rm -rf /tmp/.esd 2>/dev/null
  mkdir /tmp/.esd
  touch /tmp/.esd/socket
else
  touch /tmp/.esd/socket
fi

-- END --

Be sure to chmod 755 this script to make it executable.  My crontab 
entry looks like this:

# Fix remote flashplayer audio
30 *    * * *           /usr/local/bin/replace_esd.sh


James Tremblay wrote:
> Hi all.
> I am trying to get LTSP 4.up4 running on SLED 10 and could use a hand
> with Internet sound I have network sound running from all kinds of apps
> just can't get Firefox and any pages with sound to work.
>
>
> -------------------------------------------------------------------------
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> _____________________________________________________________________
> Ltsp-discuss mailing list.   To un-subscribe, or change prefs, goto:
>       https://lists.sourceforge.net/lists/listinfo/ltsp-discuss
> For additional LTSP help,   try #ltsp channel on irc.freenode.net
>
>   


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_____________________________________________________________________
Ltsp-discuss mailing list.   To un-subscribe, or change prefs, goto:
      https://lists.sourceforge.net/lists/listinfo/ltsp-discuss
For additional LTSP help,   try #ltsp channel on irc.freenode.net

Reply via email to