I have Solaris 10 and I install JDK 1.6 into /usr/jdk but when I look at version by:
java -Xmx4096 -version
I was surprised with this reply:
java version "1.5.0_20"
Please advice how to remove old JDK versions and left only last one?
Thank you
Unix OSJava
Last Comment
gbcbr
8/22/2022 - Mon
arnold
the issue is with the settings of your PATH
run which java and you will likely see:
/usr/bin/java or /usr/local/bin/java.
Depending on your shell, you may need to do export PATH=/usr/jdk/bin:$PATH.
removing the older version should depend on whether it is needed for system management.
pkginfo
Locate the Java Pacakage
pkginfo -i or -l packagename will provide info on the package.
NOTE: be very careful with removing packages. SUNWjava is merely used as an example for the java package name.
pkgrm SUNWjava.
gbcbr
ASKER
NetBeans shows that it use 1.6, but I try to set -Xms on it and found 1.5
So, if I use Java only for NetBeans at the moment I can leave it as it is ?
Just advice how to put VM parameters in 1.6
arnold
I'm not sure what you are asking.
If you add the /usr/jdk/bin to the search path
sh/bash
export PATH=/usr/jdk/bin:$PATH
csh
setenv path=/usr/jdk/bin:$path
Will change the behavior, you could also do alias java="/usr/jdk/bin/java"
In /usr/jdk I have:
# cd /usr/jdk
# ls
instances jdk1.5.0_20 latest
j2sdk1.4.2_22 jdk1.6.0_21 packages
#
gbcbr
ASKER
apart of jdk I have also java and j2se in /usr
everything were installed with Solaris, this reason I ask how to clean it from unused old versions and leave one, new one
CEHJ
I would set JAVA_HOME to the one you want and then
so, now it's correct java and I can delete all old versions from jdk folder and leave only 1.6?
But what to do with folders java and j2se?
Joseph Gan
Yes, you can delete all old java pathes/directoies, if you sure not going to use. But don't remove any packages if you don't know.
gbcbr
ASKER
Just for last confirmation before deleting:
I will leave in usr/jdk folder only two folders: 1.6 and packages and all other related to java delete, including folders java and j2se?
run which java and you will likely see:
/usr/bin/java or /usr/local/bin/java.
Depending on your shell, you may need to do export PATH=/usr/jdk/bin:$PATH.
removing the older version should depend on whether it is needed for system management.
pkginfo
Locate the Java Pacakage
pkginfo -i or -l packagename will provide info on the package.
NOTE: be very careful with removing packages. SUNWjava is merely used as an example for the java package name.
pkgrm SUNWjava.