Environment:debian8+firefox血沉45.8
我想为我的火狐安装闪存插件。

Firefox不知道如何打开这个地址,因为以下协议之一(apt)与任何程序都没有关联,或者在这个上下文中是不允许的。
有一个关于apturl问题的材料,用于火狐的apturl就像网页上说的那样。
sudo apt-get install apturl
E: Package 'apturl' has no installation candidate
sudo aptitude search apturl
get nothing在字符链中设置network.protocol-handler.app.apt,并以/usr/bin/apturl作为值是没有用的。
如何安装闪存插件是另一个可以解决的问题。
1.add proper source into sources.list
echo "deb http://http.debian.net/debian/ jessie main contrib non-free" >> /etc/apt/sources.list
2.sudo aptitude search flash
p browser-plugin-freshplayer-pepperflash - PPAPI-host NPAPI-plugin adapter for pepperflash
p flashbake - automated snapshots with git
p flashbench - identify flash storage properties
v flashblock -
p flashcache-dkms - write-back block device cache for Linux (DKMS version)
p flashcache-utils - write-back block device cache for Linux (user space utilities)
v flashgot -
p flashplayer-chromium - Flash Player for Chromium (Pepper)
p flashplayer-mozilla - Adobe Flash Player
i flashplugin-nonfree - Adobe Flash Player - browser plugin
p flashplugin-nonfree-extrasound - Adobe Flash Player platform support library for Esound and OSS
3. apt-get update
4. apt-get install flashplayer-mozilla 为什么apt:?channel=$不能被firefox打开的问题仍然存在。
发布于 2017-03-18 14:12:02
您正在尝试遵循Ubuntu的说明,而不是Debian。虽然Ubuntu 确实有是一个名为apturl的包,Debian 等效包显然被称为aptlinex,但是由于该页面上的链接都不能工作,看起来它不再是在Debian中打包的。
所以,只需正常安装它,并忘记那些花哨的apt://链接:
sudo apt-get install flash-plugin-nonfree为此,您可能需要添加配置库;检查您的/etc/apt/sources.list文件,查找表单的行
deb http://httpredir.debian.org/debian jessie main(在您的系统中,URL可能有所不同),并将contrib添加到末尾:
deb http://httpredir.debian.org/debian jessie main contrib发布于 2017-08-25 07:29:54
闪光灯插件-非免费是目前没有在debian 9稳定拉伸。您可以在不稳定的存储库中找到它,但是包仍然是(!)有下面的bug (我认为这个家伙死了什么的):
Setting up flashplugin-nonfree (1:3.7) ...
ERROR: wget failed to download http_://people.debian.org/~bartm/flashplugin-nonfree/D5C0FC14/fp.26.0.0.151.sha512.amd64.pgp.asc你需要手动做火狐,也许胡椒适用于铬用户。
从tar.gz格式的Adobe下载插件的最新版本。
注意:如果firefox需要它,一定要点击“另一台计算机需要它”,然后选择npapi版本。
作为根用户,提取tar.gz包并将libflashplayer.so复制到/usr/lib/flashplugin-nonfree,为文件提供以下权限/所有权值:
chmod 644 /usr/lib/flashplugin-nonfree/libflashplayer.so
chown root:root /usr/lib/flashplugin-nonfree/libflashplayer.so检查相关的/etc/alternatives条目是否正确(如果插件在升级前正常工作,这是不需要的)
update-alternatives --list flash-mozilla.so 应该返回/usr/lib flashplugin-nonfree/libflashplayer.so
如果不是这样的话,您可以使用以下方法修复:
update-alternatives --quiet --install /usr/lib/mozilla/plugins/flash-mozilla.so flash-mozilla.so /usr/lib/flashplugin-nonfree/libflashplayer.so 50有关更多信息,请参见Debian wiki。
发布于 2017-07-07 15:32:03
对于Debian,您需要从Adobe下载".tar.gz For Linux“,然后将其复制到/usr/lib/flashplugin(因为flash-plugin不会随着Adobe更改链接而更新)。
https://unix.stackexchange.com/questions/352302
复制相似问题