Não é possível instalar o plugin flash no Ubuntu?

-1

Eu preciso instalar o flashplugin em todos os sistemas do Ubuntu. Então eu baixei o flashplugin via wget wget http://archive.canonical.com/pool/partner/a/adobe-flashplugin/adobe-flashplugin_11.2.202.228.orig.tar.gz . O arquivo foi baixado e eu mudei o arquivo para / var / www / usando wget eu baixei este arquivo em todos os sistemas cliente. Na execução estou recebendo o erro abaixo .. Por favor me ajude a corrigir este erro ..

Erro:

root@user219:~# ./adobe-flashplugin_11.2.202.228.orig.tar.gz e -bash: ./adobe-flashplugin_11.2.202.228.orig.tar.gz: cannot execute binary file

Atualização 1:

I can see the automated install when runs "apt-get install flashplugin-installer" follows these steps..

Downloading... --2012-07-24 01:17:13-- http://archive.canonical.com/pool/partner/a/adobe-flashplugin/adobe-flashplugin_11.2.202.228.orig.tar.gz Resolving archive.canonical.com... 91.189.92.150, 91.189.92.191 Connecting to archive.canonical.com|91.189.92.150|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 14133169 (13M) [application/x-gzip] Saving to: ''./adobe-flashplugin_11.2.202.228.orig.tar.gz'

 0K ........ ........ ........ ........ ........ ........ 22%  343K 31s         

3072K ........ ........ ........ ........ ........ ........ 44% 508K 19s em 6144K ........ ........ ........ ........ ........ ........ 66% 479K 11s em 9216K ........ ........ ........ ........ ........ ........ 89% 400K 4s em 12288K ........ ........ ....... 100% 356K=33s

2012-07-24 01:17:47 (414 KB/s) - ./adobe-flashplugin_11.2.202.228.orig.tar.gz' saved [14133169/14133169]

Download done. Flash Plugin installed.

    
por karthick87 23.07.2012 / 21:56

2 respostas

3

A melhor maneira de instalar o Adobe Flash é instalá-lo em cada sistema a partir do repositório do Ubuntu multiverso. flashplugin-installer é o nome do pacote. O pacote meta do ubuntu-restricted-extras depende (indiretamente) dele ou do flashplugin-adobe.

Para esclarecer possíveis confusões sobre o que você vê quando instalou o pacote acima, o arquivo .deb contém um script de shell do instalador. A maior parte do trabalho real é feito no / usr / lib / flashplugin-installer / install-plugin do pacote .deb:

 #!/bin/sh

 set -e

 flash_tarball="$1"

 FILENAME=adobe-flashplugin.tar.gz

 fp_exit_with_error() {
     echo $1
     echo "The Flash plugin is NOT installed."
     exit 1
 }

 cd /var/cache/flashplugin-installer

 echo "Installing from local file $flash_tarball"
 cp -f -p "$flash_tarball" ${FILENAME}_TEMP
 mv -f ${FILENAME}_TEMP $FILENAME

 rm -rf adobe_flashplugin*/

 # unpacking and checking the plugin
 tar xzf $FILENAME || fp_exit_with_error "cannot unpack plugin"

 install -m 644 adobe-flashplugin*/i386/libflashplayer.so /usr/lib/flashplugin-installer/
 rm -rf adobe-flashplugin*

 echo "Flash Plugin installed."

 update-alternatives --quiet --install "/usr/lib/mozilla/plugins/flashplugin-alternative.so" "mozilla-flashplugin" /usr/lib/flashplugin-installer/libflashplayer.so 50

 exit 0

Você pode ver que o arquivo é descompactado e movido para /usr/lib/adobe-flashplugin/i386/libflashplayer.so e, em seguida, update-alternatives é usado para tornar isso possível um flashplugin do mozilla.

Novamente, é melhor ter toda a proteção e automação de usar o sistema de instalação de pacotes do apt para fazer o trabalho, em vez de tentar fazê-lo você mesmo, se puder.

    
por John S Gruber 23.07.2012 / 22:33
0

O Flash faz parte do pacote ubuntu-restricted-extras no repositório.

Mais informações sobre ubuntu-restricted-extras e o que contém: link

    
por Daniel Jonsson 23.07.2012 / 22:14