Displaying 1 result from an estimated 1 matches for "jdkxxxxx".
Did you mean:
dxxxxx
2009 Mar 26
1
Some install package fixes for Ubuntu Hardy
...gl1-mesa-dev and libglu1-mesa-dev. So the fix is to run (in at
terminal as root)
apt-get install libgl1-mesa-dev
apt-get install libglu1-mesa-dev
then
R
.....
install.packages("rgl")
etc.
Ubuntu Hardy rJava install fix:
Needed to get Sun JDK (not JRE)
Then add new
ln -s /usr/java/jdkxxxxx/bin/java java
and
ln -s /usr/java/jdkxxxxx/bin/javac javac
where xxxxxx is the version information on the jdk directory name -- in
my case 1.6.0_13 (see below)
Then
R CMD javareconf
still fails to find the java compiler.
Seems $JAVA_HOME may not be defined.
Try
export JAVA_HOME="/usr/ja...