Vous n'êtes pas identifié(e).
Pour obtenir la dernière version suivez ce lien:
http://www.adobe.com/products/flashplay … tion3.html
Ensuite j'ai trouvé ce script
Script pour installer flash sur backtrack 5
#!/bin/bash
#
# BTflash.sh
#
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
echo ''' ____ _____ __ _ _
| __ )_ _/ _| | __ _ ___| |__
| _ \ | || |_| |/ _` / __| _ \
| |_) || || _| | (_| \__ \ | | |
|____/ |_||_| |_|\__,_|___/_| |_|
'''
apt-get purge flashplugin-installer
cd
if [ -d "Flash" ]; then
cd Flash
else
mkdir Flash
cd Flash
fi
if [ arch != "i686" ]
then
wget -q http://fpdownload.macromedia.com/get/flashplayer/current/licensing/linux/install_flash_player_11_linux.i386.tar.gz
else
wget -q http://fpdownload.macromedia.com/get/flashplayer/current/licensing/linux/install_flash_player_11_linux.x86_64.tar.gz
fi
tar xvfz install_flash_player_11_linux*.tar.gz
cp libflashplayer.so /usr/lib/mozilla/plugins
cd
rm -rf Flash
Utiliser des logiciels propriétaires, c'est comme les plats préparés, on est incapable de dire les conservateurs qu'ils contiennent, on dira toujours que c'est bon, mais ça ne remplacera jamais le repas fait maison par sa maman.
]:D #! Crunchbang & Archlinux GNU/Linux User ]:D
Hors ligne
Bonjour,
fonctionne aussi très bien sur bt5r3 64bit et merci pour ça
ps: c'est aussi pour les 32bit....
then
wget -q http://fpdownload.macromedia.com/get/fl … 386.tar.gz
Dernière modification par m3rl1 (01-10-2013 03:22:37)
Hors ligne
Oui depuis j'ai modifier le code car la base n'est pas de moi.
#!/bin/bash
#
# BTflash.sh
#
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
#
#Source Alien And abortSecurit-E Modified by IceF0x
echo ''' ____ _____ __ _ _
| __ )_ _/ _| | __ _ ___| |__
| _ \ | || |_| |/ _` / __| _ \
| |_) || || _| | (_| \__ \ | | |
|____/ |_||_| |_|\__,_|___/_| |_|
'''
echo "[+] Valid on 32 & 64 bits GNOME BACKTRACK5 R3"
echo "[+] Clean Old Player"
apt-get purge flashplugin-nonfree flashplugin-installer gnash gnash-common mozilla-plugin-gnash swfdec-mozilla
rm -f /usr/lib/firefox/plugins/*flash*
rm -f /usr/lib/firefox-addons/plugins/*flash*
rm -f /usr/lib/mozilla/plugins/*flash*
rm -f ~/.mozilla/plugins/*flash*so
rm -rfd /usr/lib/nspluginwrapper
cd
echo -n "Press any key for continu >"
read opt
echo "[+] Install Last Player"
mkdir -p ~/.mozilla/plugins
if [ -d "Flash" ]; then
cd Flash
else
mkdir Flash
cd Flash
fi
if [ arch != "i686" ]
then
wget -q http://fpdownload.macromedia.com/get/flashplayer/current/licensing/linux/install_flash_player_11_linux.i386.tar.gz
else
wget -q http://fpdownload.macromedia.com/get/flashplayer/current/licensing/linux/install_flash_player_11_linux.x86_64.tar.gz
fi
tar xvfz install_flash_player_11_linux*.tar.gz
cp -f libflashplayer.so ~/.mozilla/plugins/
cp -f libflashplayer.so /usr/lib/mozilla/plugins
cd
rm -rf Flash
echo "[+] Successfully !"
Utiliser des logiciels propriétaires, c'est comme les plats préparés, on est incapable de dire les conservateurs qu'ils contiennent, on dira toujours que c'est bon, mais ça ne remplacera jamais le repas fait maison par sa maman.
]:D #! Crunchbang & Archlinux GNU/Linux User ]:D
Hors ligne