Re-bonjour,
Pour avoir, la jdk1.6.0, dans le PATH, j'ai prametrer le fichier /etc/profile, comme suit:
# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).

PATH="/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games:/home/chaouch/jdk1.6.0/bin"

if [ "$PS1" ]; then
if [ "$BASH" ]; then
PS1='\[\e[0;33m\u@\h:\w\\$\[\e[0m '
else
if [ "`id -u`" -eq 0 ]; then
PS1='# '
else
PS1='$ '
fi
fi
fi
PATH=$PATH:/home/chaouch/jdk1.6.0/bin
CLASSPATH=$CLASSPATH:/home/chaouch/jdk1.6.0/lib/tools.jar
CLASSPATH=$CLASSPATH:/home/chaouch/jdk1.6.0/jre/lib/rt.jar
JAVA_HOME=/home/chaouch/jdk1.6.0
JDK_HOME=/home/chaouch/jdk1.6.0
export PATH CLASSPATH JAVA_HOME JDK_HOME PS1

umask 022
Malgré ça, quand je fais:
java : command not found

et aussi.....

/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games

......et non pas:

/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games:/home/chaouch/jdk1.6.0/bin

Ma question:
Comment vous expliquer ça? et aussi, que dois-je faire, pour remedier à ce problème?
@+