zoukankan      html  css  js  c++  java
  • ubuntu下firefox安装Adobe Flash Player

    转自ubuntu系统自带的火狐(firefox)如何安装Adobe Flash


    当你刚装完系统,发现打开某些网站时,提示你“需要安装flash”,然后你点击确定,过了一会,提示你安装失败。

    我也是遇到这种情况。我第一个反应是,我先不用firefox,我安装chrome。

    可是当你用firefox打开网站时,他还是会提醒你。

    怎么办呢,可以按照下面几个步骤。

    1,先更新一下软件源

    sudo apt-get -f update

     2,去adobe官网下载flash插件

    http://get.adobe.com/cn/flashplayer/

    比如我:下载下来后是这样的:install_flash_player_11_linux.x86_64.tar.gz

    sudo tar xvf install_flash_player_11_linux.x86_64.tar.gz

    解压后:libflashplayer.so

    3,将解压后的libflashplayer.so  其放入/usr/lib/adobe-flashplugin下。但注意Firefox使用的插件目录是/usr/lib/firefox-addons/plugins。

    4,检查一下/usr/lib/firefox-addons/plugins有没有旧版的libflashplayer.so,是文件还是链接:
    ls -l /usr/lib/firefox-addons/plugins
    如果有一个libflashplayer.so文件,则将其删除:
    sudo rm -f /usr/lib/firefox-addons/plugins/libflashplayer.so
    在/usr/lib/firefox-addons/plugins  增加一个软链接
    sudo ln -s /usr/lib/adobe-flashplugin/libflashplayer.so /usr/lib/firefox-addons/plugins/libflashplayer

    如下面的:

    lrwxrwxrwx 1 root root   44  1月 12 14:17 libflashplayer -> /usr/lib/adobe-flashplugin/libflashplayer.so
  • 相关阅读:
    python遍历字典元素
    Asp.net网站优化【转】
    三、HTTP协议
    二、 OSI模型的实现TCP 、IP
    一、OSI模型
    JVM原理:4 运行期优化
    JS:jquery插件表格单元格合并.
    28-语言入门-28-1的个数
    27-语言入门-27-成绩转换
    26-语言入门-26-兄弟郊游问题
  • 原文地址:https://www.cnblogs.com/noble/p/4144064.html
Copyright © 2011-2022 走看看