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

相关文章

Ubuntu设置程序开机自启动的操作步骤

《Ubuntu设置程序开机自启动的操作步骤》在部署程序到边缘端时,我们总希望可以通电即启动我们写好的程序,本篇博客用以记录如何在ubuntu开机执行某条命令或者某个可执行程序,需要的朋友可以参考下... 目录1、概述2、图形界面设置3、设置为Systemd服务1、概述测试环境:Ubuntu22.04 带图

Ubuntu上手动安装Go环境并解决“可执行文件格式错误”问题

《Ubuntu上手动安装Go环境并解决“可执行文件格式错误”问题》:本文主要介绍Ubuntu上手动安装Go环境并解决“可执行文件格式错误”问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未... 目录一、前言二、系统架构检测三、卸载旧版 Go四、下载并安装正确版本五、配置环境变量六、验证安装七、常见

ubuntu如何部署Dify以及安装Docker? Dify安装部署指南

《ubuntu如何部署Dify以及安装Docker?Dify安装部署指南》Dify是一个开源的大模型应用开发平台,允许用户快速构建和部署基于大语言模型的应用,ubuntu如何部署Dify呢?详细请... Dify是个不错的开源LLM应用开发平台,提供从 Agent 构建到 AI workflow 编排、RA

ubuntu系统使用官方操作命令升级Dify指南

《ubuntu系统使用官方操作命令升级Dify指南》Dify支持自动化执行、日志记录和结果管理,适用于数据处理、模型训练和部署等场景,今天我们就来看看ubuntu系统中使用官方操作命令升级Dify的方... Dify 是一个基于 docker 的工作流管理工具,旨在简化机器学习和数据科学领域的多步骤工作流。

如何在Ubuntu上安装NVIDIA显卡驱动? Ubuntu安装英伟达显卡驱动教程

《如何在Ubuntu上安装NVIDIA显卡驱动?Ubuntu安装英伟达显卡驱动教程》Windows系统不同,Linux系统通常不会自动安装专有显卡驱动,今天我们就来看看Ubuntu系统安装英伟达显卡... 对于使用NVIDIA显卡的Ubuntu用户来说,正确安装显卡驱动是获得最佳图形性能的关键。与Windo

双系统电脑中把Ubuntu装进外接移动固态硬盘的全过程

《双系统电脑中把Ubuntu装进外接移动固态硬盘的全过程》:本文主要介绍如何在Windows11系统中使用VMware17创建虚拟机,并在虚拟机中安装Ubuntu22.04桌面版或Ubunt... 目录一、首先win11中安装vmware17二、磁盘分区三、保存四、使用虚拟机进行系统安装五、遇见的错误和解决

CentOS和Ubuntu系统使用shell脚本创建用户和设置密码

《CentOS和Ubuntu系统使用shell脚本创建用户和设置密码》在Linux系统中,你可以使用useradd命令来创建新用户,使用echo和chpasswd命令来设置密码,本文写了一个shell... 在linux系统中,你可以使用useradd命令来创建新用户,使用echo和chpasswd命令来设

Ubuntu中远程连接Mysql数据库的详细图文教程

《Ubuntu中远程连接Mysql数据库的详细图文教程》Ubuntu是一个以桌面应用为主的Linux发行版操作系统,这篇文章主要为大家详细介绍了Ubuntu中远程连接Mysql数据库的详细图文教程,有... 目录1、版本2、检查有没有mysql2.1 查询是否安装了Mysql包2.2 查看Mysql版本2.

新特性抢先看! Ubuntu 25.04 Beta 发布:Linux 6.14 内核

《新特性抢先看!Ubuntu25.04Beta发布:Linux6.14内核》Canonical公司近日发布了Ubuntu25.04Beta版,这一版本被赋予了一个活泼的代号——“Plu... Canonical 昨日(3 月 27 日)放出了 Beta 版 Ubuntu 25.04 系统镜像,代号“Pluc

Ubuntu中Nginx虚拟主机设置的项目实践

《Ubuntu中Nginx虚拟主机设置的项目实践》通过配置虚拟主机,可以在同一台服务器上运行多个独立的网站,本文主要介绍了Ubuntu中Nginx虚拟主机设置的项目实践,具有一定的参考价值,感兴趣的可... 目录简介安装 Nginx创建虚拟主机1. 创建网站目录2. 创建默认索引文件3. 配置 Nginx4