Ubuntu下为Firefox安装Adobe Flash Player
 
使用环境:
    OS:Ubuntu 12.04 LTS
    Browser: Firefox 12.0
    Adobe Flash Player: install_flash_player_11_linux.x86_64.tar.gz
 
安装方法:
    1. 下载Adobe Flash Player:
        请从Adobe官方下载,也可以从这个URL下载,这个URL也是官方的链接:
http://fpdownload.macromedia.com/get/flashplayer/pdc/11.2.202.235/install_flash_player_11_
linux.x86_64.tar.gz
 
    2. 解压Adobe Flash Player压缩包:
        进入到保存Adobe Flash Player压缩包的路径,将压缩包解压,使用如下命令:
 
tar -zxvf install_flash_player_11_linux.x86_64.tar.gz
 
        解压完成后,你将会得到如下的文件:
 
├── libflashplayer.so
├── readme.txt
└── usr
├── bin
│ └── flash-player-properties
├── lib64
│ └── kde4
│ └── kcm_adobe_flash_player.so
└── share
├── applications
│ └── flash-player-properties.desktop
├── icons  www.2cto.com  
│ └── hicolor
│ ├── 16x16
│ │ └── apps
│ │ └── flash-player-properties.png
│ ├── 22x22
│ │ └── apps
│ │ └── flash-player-properties.png
│ ├── 24x24
│ │ └── apps
│ │ └── flash-player-properties.png
│ ├── 32x32
│ │ └── apps
│ │ └── flash-player-properties.png
│ └── 48x48
│ └── apps
│ └── flash-player-properties.png
├── kde4
│ └── services
│ └── kcm_adobe_flash_player.desktop
└── pixmaps
└── flash-player-properties.png -> ../icons/hicolor/48x48/apps/flash-player-properties.
png
 
    3. 安装Adobe Flash Player:
        Adobe Flash Player的安装比较容易,只要将对应的文档复制到正确的的位置即可,具体的操作
如下:
        (1) 将libflashplayer.so拷贝到Firefox的Plugin目录:
cp libflashplayer.so /usr/lib/mozilla/plugins/
        (2) 将usr目录下的所有文档拷贝到系统的/usr目录下:
cp -r ./usr/* /usr/
重新打开Firefox后,就可以在网页上播放视频了,祝你幸运!
 
 
 
 
www.2cto.com/os/201205/133528.html
 
 
 

Ubuntu firefox falsh的更多相关文章

  1. Ubuntu: Firefox is already running, but is not responding

    关于Ubuntu: Firefox is already running, but is not responding问题的解决办法 最近firefox总是开不开,出现“Firefox is alre ...

  2. ubuntu firefox 选中变成了删除

    在ubuntu下 我的firefox浏览器出现了问题.描述: 1.在firefox中所有能够删除的文字只要选中就自动删除了. 终端中 ibus-setup勾掉在应用窗口中启用内嵌编辑模式

  3. [Ubuntu]Firefox书签Ubuntu与Windows同步

    Ubuntu默认使用Firefox国际版.其他平台访问官网下载到的都是中国版,而国际版和中国版使用两套账号体系,相互之间无法同步,导致Ubuntu的Firefox无法和其他平台的Firefox同步书签 ...

  4. 【转】Ubuntu FireFox无法播放网页视频音乐的解决办法

    原文:http://www.codeweblog.com/%E8%A7%A3%E5%86%B3qq%E9%9F%B3%E4%B9%90%E7%BD%91%E9%A1%B5%E7%89%88%E5%9C ...

  5. Ubuntu Firefox没有声音的解决方案

    安装ubuntu-restricted-extras sudo apt-get install ubuntu-restricted-extras 参考博文:解决ubuntu中firefox没有声音的问 ...

  6. 【ubuntu firefox】 Firefox is already running, but is not responding

    在ubuntu下启动firefox报错 Firefox is already running, but is not responding. To open a new window, you mus ...

  7. Ubuntu Firefox installs Flashplayer

    Adobe flash 下载(https://get.adobe.com/flashplayer/)  tar.gz版本(注:adobe 提供了yum,rpm,tar.gz和APT四种版本,yum和t ...

  8. ubuntu firefox上看视频,安装flash啊

    这是针对于直接硬盘安装的linux系统: u盘安装选择了安装第三方软件的话就不会存在这种问题 flash的安装其实也不是很难的,有点耐心就ok了 总结一下: 1:肯定是下载最新版的flash啦,注意看 ...

  9. ubuntu: firefox+flashplay

    更新两步: 1.安装firefox:rm-->下载-->mv-->ln http://www.cnblogs.com/yzsatcnblogs/p/4266985.html 2. f ...

随机推荐

  1. Delphi XE5 android listview

    C:\Users\Public\Documents\RAD Studio\12.0\Samples\FireMonkeyMobile\ListView 路径下有两个dpk,装完后listview也能实 ...

  2. sql之left join、right join、inner join的区别(转)

    感谢:http://www.cnblogs.com/pcjim/articles/799302.html ----------------------------------------------- ...

  3. [转载]vs2012中使用Spring.NET报错:Spring.Context.Support.ContextRegistry 的类型初始值设定项引发异常

    学习使用Spring.NET中的时候,写了一个Demo,在运行时报了一个错误:Spring.Context.Support.ContextRegistry 的类型初始值设定项引发异常. 重新整理思绪, ...

  4. [转载]C#导入XLS数据到数据库

    Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> ...

  5. sort-based shuffle的核心:org.apache.spark.util.collection.ExternalSorter

    依据Spark 1.4版 在哪里会用到它 ExternalSorter是Spark的sort形式的shuffle实现的关键.SortShuffleWriter使用它,把RDD分区中的数据写入文件. o ...

  6. POJ1260Pearls

    http://poj.org/problem?id=1260 题意 :这个题大概是讲,给你几种等级不同的珠宝,然后告诉你它的数量和价值,等级是升序排列的,且随等级的升高价值也随之升高,但为了防止有的客 ...

  7. FZU-1926+KMP

    题意:给定一篇文章和一些句子.询问句子是否在文章中出现. kmp模板题 /* kmp */ #include<stdio.h> #include<string.h> #incl ...

  8. js 中中括号,大括号使用详解

    一.{ } 大括号,表示定义一个对象,大部分情况下要有成对的属性和值,或是函数.如:var LangShen = {"Name":"Langshen",&quo ...

  9. [Unity菜鸟] 材质

    1. 材质定义: 2. 把材质都改成支持透明通道 因为物体太多了,比如树跟房子材质必须用不一样的.所以办法还是你得改每个材质的Shader,都改成支持透明通道的. 在Project的搜索窗口输入t: ...

  10. socket关闭动作以及socket状态的总结

    主要部分,四次握手: 断开连接其实从我的角度看不区分客户端和服务器端,任何一方都可以调用close(or closesocket)之类的函数开始主动终止一个连接.这里先暂时说正常情况.当调用close ...