web-dev-qa-db-ja.com

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

今日、私はflashplugin-nonfreeをDebian Jessie(テスト)にインストールしようとしました。ただし、実行中のSudo apt-get install flashplugin-nonfree、私はE: Unable to locate package flashplugin-nonfree。同じことがAptitudeでも起こります。

私のsources.list:

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

ちなみに私はクロムを使っています。

3
kyr

(これはコメントとしては優れているかもしれませんが、回答のフォーマットが優れているため)

sources.listファイルのすべての行にコメントを追加しますが、

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

次に、aptitude update && aptitude search flashplugin-nonfreeを実行して結果を共有します。

次のパッケージが見つかるはずです。

最悪のシナリオでは、上記のリンクからパッケージをダウンロードし、dpkg -i <package.deb>コマンドを使用してインストールできます...依存関係に対処する必要がある場合、それは別の話です-頑張ってください!

1
jimm-cl

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

3
Stone Forest

ちなみに私はクロムを使っています。

https://wiki.debian.org/FlashPlayer から

サポートされていないブラウザ:

クロム

Chrome/Chromiumの場合は https://wiki.debian.org/PepperFlashPlayer を使用する必要があります

Pepper Flash PlayerはGoogleによって管理されており、Adobe Flashレイヤーよりも新しいものです。アドビは現在、Adobe Flash Playerのセキュリティ修正を提供しています。 GoogleはPepper Flash Playerの新しい機能を提供します。 Pepper Flash Playerは現在、Chromium(およびChrome)でのみ使用できます。

1
user119675
$ 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

0
chan