|新人报到(得20稻币)| |Windows专区| |Linux专区| |MacOS专区| |软件资源区| |杀毒软件| |共享上网论坛| |论坛闲聊区(水区)| |稻草QQ群|

返回列表 发帖

[经验分享] 64bit Linux安装64位Flash Player的脚本

  1. #!/bin/bash
  2. # Script  created by
  3. # Romeo-Adrian Cioaba romeo.cioaba@spotonearth.com

  4. echo "Stopping any Firefox that might be running"
  5. sudo killall -9 firefox

  6. echo "Removing any other flash plugin previously installed:"
  7. sudo apt-get remove -y --purge flashplugin-nonfree gnash gnash-common mozilla-plugin-gnash swfdec-mozilla libflashsupport nspluginwrapper
  8. sudo rm -f /usr/lib/mozilla/plugins/*flash*
  9. sudo rm -f ~/.mozilla/plugins/*flash*
  10. sudo rm -f /usr/lib/firefox/plugins/*flash*
  11. sudo rm -f /usr/lib/firefox-addons/plugins/*flash*
  12. sudo rm -rfd /usr/lib/nspluginwrapper

  13. echo "Installing Flash Player 10"
  14. cd ~
  15. wget http://download.macromedia.com/pub/labs/flashplayer10/libflashplayer-10.0.45.2.linux-x86_64.so.tar.gz
  16. tar zxvf libflashplayer-10.0.45.2.linux-x86_64.so.tar.gz
  17. sudo cp libflashplayer.so /usr/lib/mozilla/plugins/

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

  21. # now doing some cleaning up:
  22. sudo rm -rf libflashplayer.so
  23. sudo rm -rf libflashplayer-10.0.45.2.linux-x86_64.so.tar.gz
复制代码

已经实验成功。
转发到微博 收藏 分享
欢迎光临本站!欢迎大家发帖

稻草站长微博,大家去关注下哦,以便获取最新动态:http://weibo.com/liyanfeng

本站为公益性站点,为大家服务,如果有意见或建议的话,欢迎与我们联系。

呵呵 支持一下

TOP

返回列表