Install Flash Player 10 on 64bit Linux

January 3, 2010

Scripts

Adobe FINALY released a native 64bit Flash Player 10 plugin. Although this is still an alpha release, the news is very exciting for Linux users, since we don’t longer depend on nspluginwrapper, which although does the job, has it’s drawbacks.

I have put together a small tutorial on how to install the native flash player 10 64bit plugin for linux.

#!/bin/bash
# Script created by
# shell scripts

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.42.34.linux-x86_64.so.tar.gz

You can now restart firefox ;-)

Some users seem to have problems with viewing this page, so i wrapped everything needed to install the native 64bit flash player on linux into a shell script.

, , , ,

5 Responses to “Install Flash Player 10 on 64bit Linux”

  1. Carel Says:

    Wow! Cool! Thanks! Works like a dream!

  2. Justin Says:

    Works after about 6 other things didn’t work. Awesome.

  3. JoshN Says:

    Just an FYI following these steps will enable 64bit flash for Google Chrome as well. At least it does on Debian Squeeze amd64. Awesome guide :)

Trackbacks/Pingbacks

  1. Install Flash Player 10 on 64bit OpenSuse | Flash tutorial | Flash video | Flash actionscript | flash animation |macromedia flash | flash menu | flashconf.com - January 3, 2010

    [...] Install Flash Player 10 on 64bit Linux [...]

  2. Tha Trackback » Blog Archive » Install Flash Player 10 on 64bit Linux | Flash tutorial | Flash … - January 3, 2010

    [...] Found this interesting post today, here is a quick excerpt of it: Consider subscribing to our rss feed! Tagged as: 64bit Linux, Install Flash Player, Install Flash Player 10 on 64bit Linux, linux script, shell scripts Leave a comment. Comments (0) Trackbacks (1) ( subscribe to comments on this post ) … Read the rest of this great post Here [...]

Leave a Reply