Trucs:Installer Flash 6.0 (pour mozilla)

De Lea Linux
Aller à la navigation Aller à la recherche
Maston28<jean-thomas.muyl@lea-linux.org>

Copier ce qui suit dans : install-flash.sh

#!/bin/sh
#Ce script telecharge le plugin macromedia flash et l'installe
#Ecrit pour Lea-knoppix (mais devrait fonctionner avec toute distribution)
#2003-01-22
#
if [ ! -f ~/install_flash_player_6_linux.tar.gz ] ; then
echo "Patientez pendant que je télécharge le plugin flash ..."
site=download.macromedia.com
path=/pub/shockwave/flash/english/linux/6.0r79/
file=install_flash_player_6_linux.tar.gz
wget -O ~/install_flash_player_6_linux.tar.gz http://$site$path$file
fi

tar xzf ~/install_flash_player_6_linux.tar.gz

if [ ! -d ~/.mozilla/plugins ] ; then
mkdir ~/.mozilla/plugins
fi

cp ~/install_flash_player_6_linux/*.so ~/.mozilla/plugins/
cp ~/install_flash_player_6_linux/*.xpt ~/.mozilla/plugins/
echo "Le plugin flash est installé !"

puis lancer le script par :
sh install-flash.sh
c'est tout !

Note(1): Si vous essayez ce truc sur une Mandrake 9.2 vous verrez en fin d'installation que flash ne semble pas fonctionner depuis mozilla, c'est normal, il faut installer le package "libstdc++-devel" avec la commande : urpmi libstdc++-devel.
Note(2): Comment je l'ai su ? ldd ~/.mozilla/plugins/libflashplayer.so retourne, entre autre : libstdc++-libc6.2-2.so.3 => not found