Script to Install Flash Player 10 on 64bit Ubuntu Linux

January 3, 2010

Scripts

#!/bin/bash
# Script created by
# www.flashconf.com

echo “Stopping any Firefox that might be running”
sudo killall -9 firefox

echo “Removing any other flash plugin previously installed:”
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 Flash Player 10″
cd ~
wget http://download.macromedia.com/pub/labs/flashplayer10/libflashplayer-10.0.42.34.linux-x86_64.so.tar.gz
tar zxvf libflashplayer-10.0.42.34.linux-x86_64.so.tar.gz
sudo cp libflashplayer.so /usr/lib/mozilla/plugins/

echo “Linking the libraries so Firefox and apps depending on XULRunner (vuze, liferea, rsswol) can find it.”
sudo ln -sf /usr/lib/mozilla/plugins/libflashplayer.so /usr/lib/firefox-addons/plugins/
sudo ln -sf /usr/lib/mozilla/plugins/libflashplayer.so /usr/lib/xulrunner-addons/plugins/

# now doing some cleaning up:
sudo rm -rf libflashplayer.so
sudo rm -rf libflashplayer-10.0.32.18.linux-x86_64.so.tar.gz

, , ,

Trackbacks/Pingbacks

  1. Script to Install Flash Player 10 on 64bit Ubuntu Linux | Flash … Mozilla Fennec - January 3, 2010

    [...] Script to Install Flash Player 10 on 64bit Ubuntu Linux | Flash … By admin | category: mozilla, mozilla ubuntu | tags: apt-get-remove, gnash-gnash-common, [...]

  2. Script to Install Flash Player 10 on 64bit Ubuntu Linux | Flash … Ubuntu Netbook - January 3, 2010

    [...] the rest here: Script to Install Flash Player 10 on 64bit Ubuntu Linux | Flash … By admin | category: ubuntu install | tags: firefox, firefox-echo, removing, running-sudo, [...]

Leave a Reply