Advertisement
Guest User

install-flashplayer-11-64bit

a guest
Jul 14th, 2011
1,180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.50 KB | None | 0 0
  1. #!/bin/bash
  2.     # Script  created by Romeo-Adrian Cioaba romeo.cioaba@spotonearth.com
  3.     # http://www.myscienceisbetter.info/install-native-64bit-flash-player-11-on-linux.html
  4.  
  5.    
  6.     #changed to use aptitude, various other small changes by n2deep.
  7.      
  8.     echo "Stopping any Firefox that might be running"
  9.     sudo killall -9 firefox
  10.      
  11.     echo "Removing any other flash plugins previously installed:"
  12.     sudo aptitude purge -y flashplugin-installer flashplugin-nonfree gnash gnash-common mozilla-plugin-gnash swfdec-mozilla libflashsupport nspluginwrapper
  13.     sudo rm -f /usr/lib/mozilla/plugins/*flash*
  14.     sudo rm -f /home/*/.mozilla/plugins/*flash*
  15.     sudo rm -f /usr/lib/firefox/plugins/*flash*
  16.     sudo rm -f /usr/lib/firefox-addons/plugins/*flash*
  17.     sudo rm -rfd /usr/lib/nspluginwrapper
  18.      
  19.     echo "Installing Flash Player 11 64 bit"
  20.     cd /tmp
  21.     wget http://download.macromedia.com/pub/labs/flashplatformruntimes/flashplayer11/flashplayer11_b1_install_lin_64_071311.tar.gz
  22.     tar zxvf flashplayer11_b1_install_lin_64_071311.tar.gz
  23.     sudo cp libflashplayer.so /usr/lib/mozilla/plugins/
  24.     sudo cp -r usr/ /
  25.      
  26.     echo "Linking the libraries so Firefox and apps depending on XULRunner (vuze, liferea, rsswol) can find it."
  27.     sudo ln -sf /usr/lib/mozilla/plugins/libflashplayer.so /usr/lib/firefox-addons/plugins/
  28.     sudo ln -sf /usr/lib/mozilla/plugins/libflashplayer.so  /usr/lib/xulrunner-addons/plugins/
  29.      
  30.     # now doing some cleaning up:
  31.     sudo rm -rf libflashplayer.so
  32.     sudo rm -rf usr/
  33.     sudo rm -rf flashplayer11_b1_install_lin_64_071311.tar.gz
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement