zoukankan      html  css  js  c++  java
  • 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
    --------------------------------------------------

  • 相关阅读:
    Git:五、操作远程仓库
    Git:四、连接GitHub远程仓库
    Git:三、工作原理
    Git:二、本地文件操作
    Git:一、简介&安装Git 2.20.1——Mac&Win
    Web前端:博客美化:四、网易云音乐单曲播放器
    设计模式之代理模式(proxy pattern)
    OpenCC的编译与多语言使用
    唯一标识符漫谈
    vscode local attach 和 remote debug
  • 原文地址:https://www.cnblogs.com/wangkongming/p/3516278.html
Copyright © 2011-2022 走看看