Não é possível instalar o Flash Player no Debian Jessie

3

Eu tentei instalar o flashplugin-nonfree no Debian Jessie (teste) hoje. No entanto, quando eu estou executando sudo apt-get install flashplugin-nonfree , recebo E: Unable to locate package flashplugin-nonfree . O mesmo acontece com o Aptidão.

Minha 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

A propósito, eu uso o Chromium.

    
por kyr 07.08.2014 / 20:14

4 respostas

1

(Isso pode ser melhor como um comentário, mas como resposta é melhor formatado)

Comente todas as linhas no arquivo sources.list , mas:

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

Em seguida, execute aptitude update && aptitude search flashplugin-nonfree e compartilhe os resultados.

Ele deve encontrar os seguintes pacotes:

Na pior das hipóteses, você pode baixar o pacote do link acima e instalá-lo através de um comando dpkg -i <package.deb> ... Se você tem que lidar com dependências, então é uma história diferente - boa sorte!

    
por 08.08.2014 / 07:16
3

Tente isso para o Firefox / Iceweasel:

1: Obtenha o Adobe Flash Player .tar.gz

2: extrair

3: Abra um terminal

4: cd para a pasta extraída

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

Funciona para mim: -)

Graças a link

    
por 01.12.2015 / 02:27
1

By the way, I use Chromium.

De link

Unsupported browsers:

Chromium

Para o Chrome / Chromium, você deve usar o link

Pepper Flash Player is maintained by Google, and is newer than Adobe Flash layer. Adobe currently still provides security fixes for Adobe Flash Player. Google provides newer features in Pepper Flash Player. Pepper Flash Player can currently only be used with Chromium (and with Chrome).

    
por 16.06.2015 / 21:39
0
$ sudo nano /etc/apt/sources.list

No final de cada linha, adicione as palavras contrib non-free da seguinte forma:

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

Então:

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

Referência: link

    
por 22.11.2016 / 05:41