页面

显示标签为“plugin”的博文。显示所有博文
显示标签为“plugin”的博文。显示所有博文

2009-04-07

iceweasel plugin

Where are iceweasel storing its plugins? And how to remove a plugin? Debian uses three directories to place plugins for iceweasel:
  1. ~/.mozilla/plugins/
  2. /usr/lib/mozilla/plugins/
  3. /usr/lib/iceweasel/plugins/
Any plugin file or symbol link to plugin file in those directories is enabled plugin for iceweasel.

I do not know other guy's boxes, but in my box, disabling a plugin via the iceweasel tools menu can not succeed actually. You have to find the plugin file in the three directories mentioned above and move it out to other place in order to remove a plugin.

2008-05-31

有用的firefox插件

  1. google browser sync:从此,在任何地方我的firefox书签都可以被同步了。
  2. menu editor:可以用来编辑firefox的系统菜单、上下文菜单,隐藏八辈子都用不着的菜单项。
  3. google notebook:一个笔记程序,可以在浏览网页的同时随手摘抄,google的,当然可以服务器端同步笔记内容。
  4. Adblock:有的网站的flash广告海多,可以用这个插件屏蔽。

2008-05-27

debian上玩转媒体播放

由于版权的原因,debian上的媒体播放器totem、mplayer等默认都没法播放realplayer甚至新版本的asf等格式的影音文件,就连在网络上听个radio都难办。好在debian有很多后备资源站点,不在乎法律纠纷,http://www.debian-multimedia.org/就是现今最便捷的一员(等我发达了,一定donate)。我是这么安装mplayer的:
  1. 首先下载debian-multimedia-keyring并安装:
    $ dpkg -i debian-multimedia-keyring_version.deb
    debian-multimedia-keyring_version.deb是下载的keyring。或者通过apt安装:$ aptitude install debian-multimedia-keyring
  2. 编辑/etc/apt/sources.list,加入包源:
    deb http://www.debian-multimedia.org testing main
    终端中执行:
    $ aptitude update
    这些步骤在http://www.debian-multimedia.org/首页有详细介绍。
  3. 然后安装mplayer:
    $ aptitude install mplayer mozilla-mplayer
  4. 现在已经基本可以播放所有格式的多媒体文件了,如果再出现解码器缺失一类的问题,可以安装更全的解码器:
    $ aptitude install w32codecs
一切搞定。如果有播放方面的问题(通常是调用gmplayer播放媒体文件时),比如没有图像之类的问题,可以在Preferences的Video页指定driver。在终端中调用就很少有问题,而且节省了GUI资源,播放效果更胜一筹。