Debian Jessie に Flash Player をインストールできません。

Debian Jessie に Flash Player をインストールできません。

今日、Debian Jessie(テスト)にflashplugin-nonfreeをインストールしようとしています。しかし、実行するsudo apt-get install flashplugin-nonfreeE: Unable to locate package flashplugin-nonfree。適性でも同じことが起こります。

私のソースのリスト:

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 Player.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が管理し、Adobe 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

関連情報