I recently had to solve the problem with a low speed of playing Flash in any browser on the latest version of the plug-in from Adobe.
Many solutions were tried, and the main components of success were finally revealed.
So:
1) Best of all, according to observations, Flash works in Ubuntu 9.04.
2) Naturally, you need to make sure that the latest version of the video card driver is installed. Install Flash plugin:
sudo apt-get install flashplugin-nonfree
3) Create the folder / etc / adobe, and in it - the file /etc/adobe/mms.cfg. Enter the following line in the file:
OverrideGPUValidation=true
This will force Flash to use hardware graphics acceleration.
4) Rules /etc/init.d/ondemand - enter
for CPU_THRESHOLD in /sys/devices/system/cpu/cpu*/cpufreq/ondemand/up_threshold
do
[ -f $CPU_THRESHOLD ] || continue
echo -n 40 > $CPU_THRESHOLD
done
After a similar block
for CPUFREQ in /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor
do
[ -f $CPUFREQ ] || continue
echo -n ondemand > $CPUFREQ
done
This will cause the OS not to lower the processor frequency when loading more than 40%.