First time I installed Flash10 so Firefox would provide YouTube A/V Playback it worked perfectly.
Then when attempting to get Skype working it turns out it requires different audio drivers which may conflict with audio drivers used by Flash.
Now after downloading audio drivers found in a posting for getting Skype to work, none of the audio drivers seem to work.
Skype is - as always - a buggy problem.
Am currently studying methods to UNLOAD tcz files and found this:
===========================
#!/bin/sh
listlines() {
for i in $*; do
echo $i
done
}
package=$1
if [ -z "$package" ]; then
echo " [Error]: No package name specified"
exit 1
fi
if [ -d /tmp/tcloop/$package ]; then
usedby=`lsof +D /tmp/tcloop/$package -Fp | sed -e "s/^p//"`
if [ "$usedby" ]; then
echo "Files in extension $package are currently in use by the following programs:"
usedby=`listlines $usedby | sort -ug`
for p in $usedby; do
/bin/ps | awk "/^$p/ "'{$1="";$2="";print $0}'
done
echo " [Error]: Extension $package has not been unloaded."
exit 1
fi
f=`cd /tmp/tcloop/$package; find ! -type d | sed -e "s%^./%/%"`
for l in $f; do
if [ -s $l ]; then
linkto=`readlink $l`
if [ "$linkto" == "/tmp/tcloop/$package$l" ]; then
echo " Unlink $l from $linkto"
sudo rm $l
else
echo " [Warning]: $l links to $linkto"
fi
else
echo " [Warning]: $l is not a link"
fi
done
sudo umount -d /tmp/tcloop/$package
# line above was suggested by another forum member to replace line below
# sudo umount /tmp/tcloop/$package
sudo rmdir /tmp/tcloop/$package
else
echo " [Warning]: /tmp/tcloop/$package does not exist"
fi
sudo rm -f /usr/local/tce.installed/$package
===========================
This seemed to work (unload/close/remove a tcz) but I had to remember to close Firefox first or it errors out.
Then tried to re-load Flash, followed by Firefox, but still no audio.
Tried reboot - no audio.
As Flash and Firefox load, all DEP files say "Ok" or "Already loaded"
Here is the script that calls Flash and FIrefox, which starts by getting online with a wifi unit
========================
#!/bin/sh -e
cd optional
tce-load -i wireless-2.6.33.3-tinycore.tcz
sleep 5
tce-load -i wireless_tools.tcz
sleep 10
sudo iwconfig wlan0 essid "MyCafeWifi" rts 250 frag 400 txpower 100mW
sleep 10
sudo udhcpc -b -i wlan0
tce-load -i flash10.tcz
tce-load -i firefox.tcz
cd ..
cd uaps
sudo iwlist wlan0 scan >wifiscan.txt
editor wifiscan.txt
==============================
Tried to run xmms - a pop up comes up
Couldn't open Audio
Please check that
Your soundcard is configured properly
You have the correct output plugin selected
No other program is blocking the soundcard