28 septembre 2008

Mozilla Firefox 3.0.3 setup on linux Debian with Java enabled

Installation pre-requisistes for Firefox 3.0.3 on Linux Debian (Etch):

--> Login as root as installation is done in /opt
--> Install GTK 2.10 in /opt
--> Modify slightly the end of the script for JRE download or download it manually from www.java.com

#!/bin/sh

#
# Login as root
#
echo "Please Login as root"
su -

#
# Go to Mozilla Firefox install directory
#
cd /opt

#
# Download Mozilla Firefox Package
#
echo "Downloading Mozilla Firefox"
wget "http://download.mozilla.org/?product=firefox-3.0.3&os=linux&lang=fr"

#
# Extract Firefox Directory
#
echo "Extracting Mozilla Firefox"
bzip2 -d firefox-3.0.3.tar.bz2
tar -xvf firefox-3.0.3.tar
rm -fr firefox-3.0.3.tar

#Or
#tar -xjf firefox-3.0.3.tar
#rm -fr firefox-3.0.3.tar.bz2

#
# Create Firefox start script
#
echo "Creating Firefox start script"
cat > firefox/start-firefox.sh << EOF
#!/bin/sh
export LD_LIBRARY_PATH="/opt/gtk210/lib"
export MOZ_NO_REMOTE=1
/opt/firefox/firefox \$*
EOF
chmod a+x firefox/start-firefox.sh

#
# Download Java Runtime Environment
#
echo "Downloading Java JRE"
wget http://javadl.sun.com/webapps/download/AutoDL?BundleId=23103
echo "Installing Java JRE"
chmod u+x jre-6u7-linux-i586.bin
./jre-6u7-linux-i586.bin
rm -fr jre-6u7-linux-i586.bin

#
# Set up Java plugin for Mozilla Firefox
#
echo "Setting up Java Plugin for Firefox"
ln -s /opt/jre1.6.0_07/plugin/i386/ns7/libjavaplugin_oji.so firefox/plugins/

Correct Java installation for Firefox can be checked on http://www.java.com/fr/ or http://www.java.com/fr/download/installed.jsp

Libellés : , , , , , ,

0 commentaires:

Enregistrer un commentaire

Abonnement Publier les commentaires [Atom]

<< Accueil

06 juillet 2008

Export de certificats avec Iceweasel

J'ai testé l'export de certificats avec Iceweasel 2.0.0.14 sous Debian GNU/Linux 4.0 et ce n'est pas concluant ...

Dans Edition->Préférences->Avancé->Chiffrement->Afficher les certificats, on utilise Exporter ou Tout Exporter.

Le problème est que cette version de Firefox pour Debian se banane irrémédiablement lors de l'export de certificats ; opération commode pour conserver le certificat de la direction générale des impôts par exemple.

Impossible d'exporter le moindre certificat, Firefox trappe systématiquement avec un signal 11:

Core was generated by `/usr/lib/iceweasel/firefox-bin -a firefox'.
Program terminated with signal 11, Segmentation fault.
#0 0xb7ef3410 in ?? ()
(gdb) where
#0 0xb7ef3410 in ?? ()
#1 0xbf812ee8 in ?? ()
#2 0x0000000b in ?? ()
#3 0x00002dc1 in ?? ()
#4 0xb7d50a8d in raise () from /lib/tls/i686/cmov/libpthread.so.0
#5 0x080849fc in ?? ()
#6 0x0000000b in ?? ()
#7 0xbf812f00 in ?? ()
#8 0x00000000 in ?? ()

Il faudra voir si le tout nouveau Firefox 3.0 souffre de la même maladie.

Libellés : , , , , , ,

0 commentaires:

Enregistrer un commentaire

Abonnement Publier les commentaires [Atom]

<< Accueil

27 juillet 2006

Nouveau patch de Mozilla Firefox version 1.5.0.5

La fondation Mozilla vient de publier un nouveau patch de Firefox, version 1.5.0.5.

Cette mise à jour de Firefox corrige pas moins de 7 failles de sécurité, permettant d'exécuter du code arbitraire.

Vous pouvez télécharger Firefox sous Linux sur le site de Mozilla.

Si vous utilisez Windows, le téléchargement de Firefox est ici.

Le site officiel de Firefox en Europe.

Libellés : , , , ,

0 commentaires:

Enregistrer un commentaire

Abonnement Publier les commentaires [Atom]

<< Accueil