oops.. sorry.. messed up on the pasting of the address. the 64 bit one is because my 'desktop' computer is 64 bit Kubuntu.
There is an i386 version that would be run on my MD, however the 'flash-aid'' script wants to un-install flashplugin-installer (which would break many things)... ive been trying to run the script manually step by step excluding the removal of flashplugin-installer, and linking /etc/alternatives/mozilla-flashplayer to the new libflashplugin.so located in /usr/lib/mozilla/plugins.
here is the script generated by 'flash-aid' that would be run on my 32bit MD:
#!/bin/bash
echo "***************************************************************************
*****************PLEASE WAIT...DON'T CLOSE THIS TERMINAL!******************
***************************************************************************
***************************************************************************"
sudo -k
echo '***************************************************************************
*************************Starting removal commands*************************
***************************************************************************
***************************************************************************'
sudo apt-get --yes purge flashplugin.*installer
sudo apt-get --yes purge flashplugin-downloader
echo '***************************************************************************
*************************Starting update commands**************************
***************************************************************************
***************************************************************************'
echo '***************************************************************************
*************************Starting install commands*************************
***************************************************************************
***************************************************************************'
cd "/root/.mozilla/firefox/p2ejri39.default/extensions/flashaid@lovinglinux.megabyet.net/chrome/content/tmp" && rm -f *flash* && wget http://fpdownload.macromedia.com/get/flashplayer/pdc/11.2.202.233/install_flash_player_11_linux.i386.tar.gz
NEWHASH32=$(md5sum *flash* | sed 's/ .*//g')
if [ "${NEWHASH32}" == '1ad1d399e95e452b6f85fe20003f3846' ];then
tar xvf *flash* libflashplayer.so && sudo chown root:root libflashplayer.so && sudo chmod 0644 libflashplayer.so && sudo mv libflashplayer.so /usr/lib/mozilla/plugins/ && sudo ln -s /usr/lib/mozilla/plugins/libflashplayer.so /usr/lib/firefox-addons/plugins/libflashplayer.so && rm -f *flash*
else
echo 'Flash 32bit installation aborted, due to md5 checksum mismatch!'
rm -f *flash*
fi
echo '***************************************************************************
*************************Starting tweaking commands************************
***************************************************************************
***************************************************************************'
TWEAK=$(cat /etc/adobe/mms.cfg | grep 'OverrideGPUValidation')
if test -z "${TWEAK}";then
echo 'OverrideGPUValidation=true' | sudo tee -a /etc/adobe/mms.cfg
fi
cat /etc/adobe/mms.cfg | sed '/EnableLinuxHWVideoDecode=1/d' | sudo tee /etc/adobe/mms.cfg
NPVIEWER=/usr/lib/nspluginwrapper/i386/linux/npviewer
if test -f "${NPVIEWER}";then
cat /usr/lib/nspluginwrapper/i386/linux/npviewer | sed '/export GDK_NATIVE_WINDOWS=1/d' | sudo tee /usr/lib/nspluginwrapper/i386/linux/npviewer
fi
echo -n "************************************************************************
wget http://fpdownload.macromedia.com/get/flashplayer/pdc/11.1.102.63/install_flash_player_11_linux.x86_64.tar.gz***
******FINISHED! You can close this terminal and restart Firefox now.*******
************************************************************code***************
***************************************************************************" && read
The file i would need for my MD would be
wget http://fpdownload.macromedia.com/get/flashplayer/pdc/11.1.102.63/install_flash_player_11_linux.i386.tar.gzand I am working on applying it now to see what it resolves
Dennis