Welcome, new user.Please Log in.

Search

Why this blog?

Actually for put online my favorites Tips. You can help the whole community to create your account and put YOURS!

My Resume

Download my resume:

download

Information


blogCloud



Last reactions:

Cool ! Mais heu... c'est quoi déjà Ubuntu One ? Roooh jsuis obligé d'aller Googler par moi même

Piwaï : 30 November 2009

Excellent ton programme!! Bon ça marche seulement sur mon réseau local mais c'est super facile à utiliser. Tu devrais fairer une interface web d'administration pour rendre les choses plus simple.

N!Col@$ : 06 October 2009

Cette manipulation à été effectué sous Jaunty. La dernière Ubuntu (Karmic) possède même un paquet spécifique linux-image-generic-pae

Tony : 11 September 2009

Archives 2010

 

Installer le Flash debug 64bits pour FlexBuilder

03 September 2009


Je viens de découvrir que Abode a sorti son flash debug en version 64bits. Maintenant rien ne nous empêche de debugger nos applications Flex sous Linux et abandonner notre vieux Windows.



Copier les lignes ci-dessous dans un script

#!/bin/bash
# Script created by
# Romeo-Adrian Cioaba romeo.cioaba@spotonearth.com

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

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/libflashplayer-10.0.d20.7.linux-x86_64.so.tar.gz
tar zxvf libflashplayer-10.0.d20.7.linux-x86_64.so.tar.gz
sudo cp 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/

# now doing some cleaning up:
sudo rm -rf libflashplayer.so
sudo rm -rf libflashplayer-10.0.d20.7.linux-x86_64.so.tar.gz



N'oubliez pas de donner les droits d'exécution au fichier avant de le lancer :
chmod +x


Source : http://www.myscienceisbetter.info/install-native-64bit-flash-player-10-on-linux.html

Tags: flexbuilder, flex, debug, x32_64
Add a comment