Jump to content

Flash 10 released!


Artificial Intelligence
 Share

Recommended Posts

Got it yesterday as an update through PackageKit (so nice of Adobe to set up a yum repo ;) ).

 

Also one for Ubuntu.

 

Though the rumour says that Flash 11 will be 64-bit compatible.

To install Flash 10 for 64-bit Ubuntu manually;

wget http://queleimporta.com/downloads/flash10_en.sh && sudo chmod +x flash10_en.sh && sudo sh ./flash10_en.sh

 

 

Source of the script;

#!/bin/bash
# Script  created by
# Romeo-Adrian Cioaba romeo.cioaba@spotonearth.com
# Super minor updates by jason.melton[at]gmail[dot]com
# Updates by Alejandro Cuervo 3[at]cuervo[dot]net
# Released under GPL

echo "Closing Firefox"
sudo killall -9 firefox

echo "Downloading and instaling Getlibs for required libraries"
wget http://www.boundlesssupremacy.com/Cappy/getlibs/getlibs-all.deb
sudo dpkg -i getlibs-all.deb

echo "Removing previous installs of flash:"
sudo apt-get remove -y --purge flashplugin-nonfree gnash gnash-common mozilla-plugin-gnash swfdec-mozilla libflashsupport nspluginwrapper
sudo rm -f /usr/lib/mozilla/plugins/*flash*
sudo rm -f ~/.mozilla/plugins/*flash*
sudo rm -f /usr/lib/firefox/plugins/*flash*
sudo rm -f /usr/lib/firefox-addons/plugins/*flash*
sudo rm -rfd /usr/lib/nspluginwrapper

echo "Installing ia32-libs and nspluginwrapper"
sudo apt-get install ia32-libs nspluginwrapper

echo "Getting libs"
sudo getlibs -p libcurl3
sudo getlibs -p libnss3-1d
sudo getlibs -p libnspr4-0d

echo "Installing Flash Player 10"
cd ~
wget http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player_10_linux.tar.gz
tar zxvf install_flash_player_10_linux.tar.gz
sudo cp install_flash_player_10_linux/libflashplayer.so /usr/lib/mozilla/plugins/
rm -rf ~/install_flash_player_10_linux/
sudo nspluginwrapper -i /usr/lib/mozilla/plugins/libflashplayer.so

echo "Linking the libraries so that firefox can see them."
sudo ln -sf /usr/lib/nspluginwrapper/plugins/npwrapper.libflashplayer.so /usr/lib/mozilla/plugins/
sudo ln -sf /usr/lib/nspluginwrapper/plugins/npwrapper.libflashplayer.so /usr/lib/firefox-addons/plugins/

echo "Done :-)"
echo "You may re-start Firefox now"

Link to comment
Share on other sites

I've just tried to install Adobe Flash Player version 10.0.12.36 on my Mandriva Linux release 2009.0 (Official) for x86_64 (free edition), unsuccessfully

 

I downloaded the package from Adobe website to a local directory and run as root

# urpmi flash-plugin-10.0.12.36-release.i386.rpm

then I tried to run nspluginwrapper to enable the i386 plugin for my x86_64 firefox-3.0.3-2mdv2009.0 browser. Unfortunately nspluginwrapper was not installed by default. So I had to

# urpmi nspluginwrapper

and then

# nspluginwrapper -i /usr/lib/flash-plugin/libflashplayer.so

but I've got this error message

*** NSPlugin Viewer  *** ERROR: libnss3.so: cannot open shared object file: No such file or directory
nspluginwrapper: no appropriate viewer found for /usr/lib64/mozilla/plugins/libflashplayer.so

so I installed libnss3

# urpmi libnss3

and once again

# nspluginwrapper -i /usr/lib/flash-plugin/libflashplayer.so

this time there were no errors. I checked the plugin directory, npwrapper.libflashplayer.so was there

# ls /usr/lib64/mozilla/plugins/
libjavaplugin.so@		  libtotem-cone-plugin.so*  libtotem-mully-plugin.so*		npwrapper.libflashplayer.so*
libtotem-basic-plugin.so*  libtotem-gmp-plugin.so*   libtotem-narrowspace-plugin.so*  npwrapper.so@

 

Then I restarted firefox. Unfortunately all the flash objects appear as grey boxes. I don't have my Mandriva 2008 edition any more to compare installation. Maybe I should have created a link from one of the browser plugin directories to /usr/lib/flash-plugin/libflashplayer.so? Anyone facing the same problem?

Link to comment
Share on other sites

 Share

×
×
  • Create New...