суббота, 14 февраля 2009 г.

64 битный Adobe Flash Player 10

http://labs.adobe.com/downloads/flashplayer10.html тут можно подсмотреть ссылочку на последнюю версию.
На моей убунте 8.10 x64 флешплеер заработал после установки с помощью этого скрипта.

#!/bin/bash
# Script created by
# Romeo-Adrian Cioaba romeo.cioaba@spotonearth.com
# Modified by
# Ramil Minnigaliev (aka ⚡ Thunde® ⚡) minnigaliev-r@yandex.ru

echo "Stopping any Firefox that might be running"
sudo killall firefox firefox-bin

echo "Removing any other flash plugin previously installed:"
sudo apt-get remove -y --purge flashplugin-nonfree gnash gnash-common mozilla-plugin-gnash swfdec-mozilla libflashsupport nspluginwrapper
sudo rm -f /usr/lib/mozilla/plugins/*flash*
sudo rm -f ~/.mozilla/plugins/*flash*
sudo rm -f /usr/lib/firefox/plugins/*flash*
sudo rm -f /usr/lib/firefox-addons/plugins/*flash*
sudo rm -rfd /usr/lib/nspluginwrapper


echo "Installing Flash Player 10"
cd ~
wget http://download.macromedia.com/pub/labs/flashplayer10/flashplayer_square_p2_64bit_linux_092710.tar.gz
tar zxvf flashplayer_square_p2_64bit_linux_092710.tar.gz
sudo mv libflashplayer.so /usr/lib/mozilla/plugins/

echo "Linking the libraries so Firefox and apps depending on XULRunner (vuze, liferea, rsswol) can find it."
sudo ln -sf /usr/lib/mozilla/plugins/libflashplayer.so /usr/lib/firefox-addons/plugins/
sudo ln -sf /usr/lib/mozilla/plugins/libflashplayer.so /usr/lib/xulrunner-addons/plugins/

echo "Now doing some cleaning up"
sudo rm -rf flashplayer_square_p2_64bit_linux_092710.tar.gz

echo "Installation completed successfully!"

Комментариев нет:

Отправить комментарий