无法在 Debian Jessie 上安装 Flash Player

无法在 Debian Jessie 上安装 Flash Player

我今天尝试在 Debian Jessie(测试)上安装 flashplugin-nonfree。然而,当我跑步时sudo apt-get install flashplugin-nonfree,我得到了E: Unable to locate package flashplugin-nonfree。 Aptitude 也会发生同样的情况。

我的来源列表:

deb http://http.debian.net/debian/ jessie main contrib non-free
deb-src http://http.debian.net/debian/ jessie main

deb http://security.debian.org/ testing/updates main
deb-src http://security.debian.org/ testing/updates main

# testing-updates, previously known as 'volatile'
deb http://http.debian.net/debian/ testing-updates main
deb-src http://http.debian.net/debian/ testing-updates main

deb http://http.debian.net/debian/ testing-backports main contrib non-free

顺便说一下,我使用 Chromium。

答案1

在 Firefox/Iceweasel 上试试这个:

1:获取Adobe Flash 播放器.tar.gz

2:提取它

3:打开终端

4:cd到解压后的文件夹

5:运行sudo cp libflashplayer.so /usr/lib/mozilla/plugins/

这个对我有用 :-)

谢谢https://forums.kali.org/showthread.php?977-Install-Flash-Player-for-Iceweasel-Firefox-in-3-Simple-Steps

答案2

(这可能作为评论更好,但作为答案格式更好)

注释文件中的每一行sources.list,但是:

deb http://http.debian.net/debian/ jessie main contrib non-free

然后,运行aptitude update && aptitude search flashplugin-nonfree并分享结果。

它应该找到以下包:

在最坏的情况下,您可以从上面的链接下载软件包并通过dpkg -i <package.deb>命令安装它......如果您必须处理依赖项,那么那就是一个不同的故事 - 祝你好运!

答案3

顺便说一下,我使用 Chromium。

https://wiki.debian.org/FlashPlayer

不支持的浏览器:

对于 Chrome/Chromium,您应该使用https://wiki.debian.org/PepperFlashPlayer

Pepper Flash Player 由 Google 维护,比 Adob​​e Flash 层更新。 Adobe 目前仍为 Adob​​e Flash Player 提供安全修复程序。 Google 在 Pepper Flash Player 中提供了更新的功能。 Pepper Flash Player 目前只能与 Chromium(以及 Chrome)一起使用。

答案4

$ sudo nano /etc/apt/sources.list

在每行末尾添加单词 contrib non-free,如下所示:

deb http://ftp.uk.debian.org/debian/ jessie main contrib non-free
deb-src http://ftp.uk.debian.org/debian/ jessie main contrib non-free

deb http://security.debian.org/ jessie/updates main contrib non-free
deb-src http://security.debian.org/ jessie/updates main contrib non-free

# jessie-updates, previously known as 'volatile'
deb http://ftp.uk.debian.org/debian/ jessie-updates main contrib non-free
deb-src http://ftp.uk.debian.org/debian/ jessie-updates main contrib non-free

然后:

$ sudo apt-get update 
$ sudo apt-get install flashplugin-nonfree

参考:https://www.lifewire.com/get-flash-to-work-iceweasel-debian-2202059

相关内容