Debian – Can’t install Flash Player on Debian Jessie

adobe-flashdebian

I tried to install the flashplugin-nonfree on Debian Jessie (testing) today. However, when I tr running sudo apt-get install flashplugin-nonfree, I get E: Unable to locate package flashplugin-nonfree. The same happens with Aptitude.

My 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

By the way, I use Chromium.

Best Answer

(This might be better as a comment, but as an answer is better formatted)

Comment every line in the sources.list file, but:

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

Then, run aptitude update && aptitude search flashplugin-nonfree and share the results.

It should find the following packages:

In the worst case scenario, you can download the package from the above link and install it through a dpkg -i <package.deb> command... If you have to deal with dependencies, then that's a different story - good luck!

Related Question