Skip to content

Instantly share code, notes, and snippets.

@igorcosta
Created September 3, 2015 18:21
Show Gist options
  • Save igorcosta/558e1a6fb746e319fcdb to your computer and use it in GitHub Desktop.
Save igorcosta/558e1a6fb746e319fcdb to your computer and use it in GitHub Desktop.
Flash Player 11.2 Debugger for Firefox on Ubuntu
sudo apt-get install ia32-libs nspluginwrapper
sudo mkdir /usr/lib/flash-plugin/
wget http://fpdownload.macromedia.com/pub/flashplayer/updaters/11/flashplayer_11_plugin_debug.i386.tar.gz
tar xzvf flashplayer_11_plugin_debug.i386.tar.gz
sudo cp libflashplayer.so /usr/lib/flash-plugin/
sudo chmod 775 /usr/lib/flash-plugin/libflashplayer.so
cd /usr/lib/mozilla/plugins
rm -rf npwrapper.libflashplayer.so # Not sure if this part is necessary or not
sudo ln -s /usr/lib/flash-plugin/libflashplayer.so .
sudo chmod 777 libflashplayer.so
sudo nspluginwrapper -i /usr/lib/flash-plugin/libflashplayer.so
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment