Como adicionar suporte a Flash em um PowerPC debian

1

Eu tenho um PowerBook G4 rodando Debian.

Eu segui as instruções do deba wiki mas para instalação, ele apenas disse

Install flashplugin-nonfree (from section contrib).

Eu não tinha certeza do que isso significava, então eu corri

apt-get install flashplugin-nonfree

Mas tenho esse erro

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package flashplugin-nonfree is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'flashplugin-nonfree' has no installation candidate

aqui está meu sources.list - Editado:

#

# deb cdrom:[Debian GNU/Linux 7.3.0 _Wheezy_ - Official powerpc CD Binary-1 20131215-05:55]/ wheezy main

deb cdrom:[Debian GNU/Linux 7.3.0 _Wheezy_ - Official powerpc CD Binary-1 20131215-05:55]/ wheezy main

deb http://ftp.us.debian.org/debian/ wheezy main contrib non-free
deb-src http://ftp.us.debian.org/debian/ wheezy main

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

# wheezy-updates, previously known as 'volatile'
deb http://ftp.us.debian.org/debian/ wheezy-updates main
deb-src http://ftp.us.debian.org/debian/ wheezy-updates main
deb http://ppa.launchpad.net/webupd8team/java/ubuntu precise main
deb-src http://ppa.launchpad.net/webupd8team/java/ubuntu precise main
    
por JGallardo 06.01.2014 / 09:40

1 resposta

1

Nova resposta

Desculpe, eu não fui cauteloso o suficiente.
No PowerPC não há suporte oficial para o Flash, sua única alternativa é um plugin gratuito " gnash "
sudo apt-get install gnash browser-plugin-gnash

Resposta antiga

Para adicionar um aplicativo não gratuito à sua fonte de instalação, modifique o arquivo /etc/apt/sources.list :

sudo 'the_editor_of_your_choice' /etc/apt/source.list

editar a linha de deb http://ftp.us.debian.org/debian/ wheezy-updates main
para deb http://ftp.us.debian.org/debian/ wheezy-updates main contrib non-free

Editar 2 :
deb http://ftp.us.debian.org/debian/ wheezy main
ou deb http://ftp.us.debian.org/debian/ wheezy main contrib non-free

Em seguida, execute essas linhas

#this is for updating ths list of app available in repository after the update made to your 'source.list' file  
sudo apt-get update

# You might want to run this command to upgrade your packages:
sudo apt-get upgrade 

#this is the command to install flash on debian once you activate the nonfree and contrib repositories
sudo apt-get install flashplugin-nonfree

#this seems to be the command to update according to the [debian wiki][2]
sudo update-flashplugin-nonfree --install

E isso deve funcionar.

    
por 06.01.2014 / 10:00