Installing flashplayer debug Firefox plug-in on Ubuntu 10.4

2023-10-24 05:58

本文主要是介绍Installing flashplayer debug Firefox plug-in on Ubuntu 10.4,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Hey there.

I’ve been looking for a way to that would allow to easily switch between the original and the debug versions of flashplayer, without overwriting the original lib (as to not break the automatic updates), so here’s what I came up with.

  1. First, make sure you have installed the general plugin. I have done this through Ubuntu Software Center (yes, I avoided terminal here, much more visual, i like that). Make sure to get the original thing by Adobe.
  2. Make sure the original lib is there:
    ivan@desk:~$ ls /usr/lib/adobe-flashplugin/
    libflashplayer.so
  3. For some reason, Flex4 OpenSource SDK does not include the debugging plugin (the thing provided in runtimes/10.1/lnx/ is a general version, not debugger), so get the “Flashplayer Plug-in content debugger” distro fromhttp://www.adobe.com/support/flashplayer/downloads.html
  4. Untar the archive and move the plugin somewhere you will store it
    ivan@desk:~/Downloads$ tar -xvzf flashplayer_10_plugin_debug.tar.gz
    ivan@desk:~/Downloads$ sudo mv libflashplayer.so /opt/flex4/runtimes/libflashplayer.debug.so
  5. Now, install libflashplayer.debug.so as an alternative to libflashplayer.so
    ivan@desk:~/Downloads$ sudo update-alternatives --install /usr/lib/adobe-flashplugin/libflashplayer.so firefox-flashplugin /opt/flex4/runtimes/libflashplayer.debug.so 60
  6. Ensure that now the symlink points to the newly installed alternative
    ivan@desk:~/Downloads$ update-alternatives --display firefox-flashplugin
    firefox-flashplugin - auto mode
    link currently points to /opt/flex4/runtimes/libflashplayer.debug.so
    /opt/flex4/runtimes/libflashplayer.debug.so - priority 60
    /usr/lib/adobe-flashplugin/libflashplayer.so - priority 50
    Current `best' version is /opt/flex4/runtimes/libflashplayer.debug.so.
  7. Launch Firefox, type about:plugins into the addressbar and ensure that Firefox loaded the right flash plug-in.


转载地址:http://ivanbartsov.wordpress.com/2010/08/09/installing-flashplayer-debug-firefox-plug-in-on-ubuntu-10-4/

这篇关于Installing flashplayer debug Firefox plug-in on Ubuntu 10.4的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/273144

相关文章

pico2 开发环境搭建-基于ubuntu

pico2 开发环境搭建-基于ubuntu 安装编译工具链下载sdk 和example编译example 安装编译工具链 sudo apt install cmake gcc-arm-none-eabi libnewlib-arm-none-eabi libstdc++-arm-none-eabi-newlib 注意cmake的版本,需要在3.17 以上 下载sdk 和ex

在Ubuntu 20.04上安装Nginx的方法

前些天发现了一个巨牛的人工智能学习网站,通俗易懂,风趣幽默,忍不住分享一下给大家。点击跳转到网站。 简介 Nginx 是世界上最流行的 Web 服务器之一,负责托管互联网上一些最大和流量最高的网站。它是一个轻量级选择,可以用作 Web 服务器或反向代理。 在本指南中,我们将讨论如何在 Ubuntu 20.04 服务器上安装 Nginx,调整防火墙,管理 Nginx 进程,并设置服务器块以从单

虚拟机ubuntu配置opencv和opencv_contrib

前期准备  1.下载opencv和opencv_contrib源码 opencv-4.6.0:https://opencv.org/releases/ opencv_contrib-4.6.0:https://github.com/opencv/opencv_contrib 在ubuntu直接下载或者在window上下好传到虚拟机里都可以 自己找个地方把他们解压,个人习惯在home下新建一

第十章 【后端】环境准备(10.4)——Vagrant

10.4 Vagrant Vagrant 官网 Vagrant 镜像仓库 下载 安装 直接 install。 设置环境变量 Vagrant 默认将镜像保存在用户文件夹的 .vagrant.d 目录下,若用户文件夹在C盘,下载的镜像文件会大量占用C盘空间。设置环境变量 VAGRANT_HOME 后,Vagrant 会将镜像保存到环境变量指定的文件夹下。

解决ubuntu系统无法与FinalShell无法连接问题

问题 解决方案 先下载ubuntu网络工具 sudo apt install net-tools 输入密码 下载完成后进入管理员模式查看密码 sudo -i hostname -I 查看IP 得到ip地址后再继续安装 openssh-server 插件 sudo apt-get install openssh-server 问题解决 尝试连接Fina

hector_quadrotor编译总结 | ubuntu 16.04 ros-kinetic版本

hector_quadrotor编译总结 | ubuntu 16.04 ros-kinetic版本 基于Ubuntu 16.04 LTS系统所用ROS版本为 Kinetic hector_quadrotor ROS包主要用于四旋翼无人机的建模、控制和仿真。 1.安装依赖库 所需系统及依赖库 Ubuntu 16.04|ros-kinetic|Gazebo|gazebo_ros_pkgs|ge

hector_quadrotor编译总结 | ubuntu 14.04 ros-indigo版本

hector_quadrotor编译总结 | ubuntu 14.04 ros-indigo版本 基于Ubuntu 14.04 LTS系统所用ROS版本为 Indigo hector_quadrotor ROS包主要用于四旋翼无人机的建模、控制和仿真。 备注:两种安装方式可选:install the binary packages | install the source files

Nn criterions don’t compute the gradient w.r.t. targets error「pytorch」 (debug笔记)

Nn criterions don’t compute the gradient w.r.t. targets error「pytorch」 ##一、 缘由及解决方法 把这个pytorch-ddpg|github搬到jupyter notebook上运行时,出现错误Nn criterions don’t compute the gradient w.r.t. targets error。注:我用

[轻笔记]ubuntu shell脚本切换conda环境

source /home/yourhostname/anaconda3/etc/profile.d/conda.sh # 关键!!!conda activate env_name

[轻笔记] ubuntu Shell脚本实现监视指定进程的运行状态,并能在程序崩溃后重启动该程序

根据网上博客实现,发现只能监测进程离线,然后对其进行重启;然而,脚本无法打印程序正常状态的信息。自己通过不断修改测试,发现问题主要在重启程序的命令上(需要让重启的程序在后台运行,不然会影响监视脚本进程,使其无法正常工作)。具体程序如下: #!/bin/bashwhile [ 1 ] ; dosleep 3if [ $(ps -ef|grep exe_name|grep -v grep|