Pour SoukoussMan :
j'ai finalement réussi à mettre mercury :
tu installes le package xorg-x11-deprecated-libs
puis tu fais ça :
With NPTL enabled GLIBC
1. Ensure you have a working JVM installed
2. Download the latest final manual update zip
3. make yourself a superuser (su) only if you want to install Mercury system-wide, i.e: for all users
4. extract the update zip file to a folder in a common directory (i.e. /usr/share/Mercury)
5. open your favourite text editor and create a file with the following code:
-
-------
#!/bin/bash
MERCURY_INSTALL_PATH="/usr/share/Mercury"
JMF_INSTALL_PATH="/usr/share/JMF-2.1.1e"
cd $MERCURY_INSTALL_PATH
classpath=""
for file in `ls $MERCURY_INSTALL_PATH/lib`
do
classpath="$MERCURY_INSTALL_PATH/lib/$file:$classpath"
done
for file in `ls $JMF_INSTALL_PATH/lib`
do
classpath="$JMF_INSTALL_PATH/lib/$file:$classpath"
done
java -classpath $classpath com.dMSN.Main
-
------
6. Save this file as Mercury_Messenger in the directory you installed Mercury to (i.e. /usr/share/Mercury)
7. run the following commands:
# chgrp -R users /usr/share/Mercury
# chmod -R 775 /usr/share/Mercury
8. finally create the link to the executable by typing:
# ln -s /usr/share/Mercury/Mercury_Messenger /usr/bin/Mercury_Messenger
Chez moi ça marche ! Vérifie aussi que tu as JMF installé
c'est le package jmf-2_1_1e-linux-i586.bin que tu peux télécharger sur le site de java si je ne m'abuse.