script

Flash 64 Bit unter Ubuntu install-script (Update 2010-12-03)

Endlich gibt es wieder eine 64bit "Preview" des Flashplayers für Linux

ich habe dazu mal ein kleines Script erstellt, dass die aktuelle Version davon installiert.

dazu benutze ich das debian-alternatives system, dass heisst die Versionen können einfach über den Befehl
sudo update-alternatives --config mozilla-flashplugin
bzw.
sudo update-alternatives --config firefox-flashplugin
wieder zurückgesetzt / ausgetauscht werden.

hier das Script
Update 2010-12-03:
Update für Version 3 von Square, für ein Update das Script einfach nochmals laufen lassen

#!/bin/bash
 
wget http://download.macromedia.com/pub/labs/flashplayer10/flashplayer10_2_p3_64bit_linux_111710.tar.gz
tar zxvf flashplayer10_2_p3_64bit_linux_111710.tar.gz
sudo mkdir -p /usr/lib/flash64
sudo cp libflashplayer.so /usr/lib/flash64/libflashplayer.so
 
echo "cleaning up"
sudo rm -rf libflashplayer.so 
sudo rm -rf flashplayer10_2_p3_64bit_linux_111710.tar.gz
 
#if this is just an update, you're don't need to run the following lines
 
sudo update-alternatives --install /usr/lib/mozilla/plugins/flashplugin-alternative.so mozilla-flashplugin  /usr/lib/flash64/libflashplayer.so 50
sudo update-alternatives --install /usr/lib/firefox/plugins/flashplugin-alternative.so firefox-flashplugin  /usr/lib/flash64/libflashplayer.so 50
Inhalt abgleichen