SunJDK
From ArgeoWiki
| SunJDK | |
| Web site | http://java.sun.com |
| All third party software | |
[edit]
Install JDK 1.4 from Sun under Linux Fedora x86_64
There is no x86_84 binary available for JDK 1.4. You need to install some i386 libraries.
For Fedora 12
sudo yum install libXp.i686 libXtst.i686
For Fedora 9
yum install libXp.i386 libXtst.i386
[edit]
Install JDK 1.3 from Sun under Linux Fedora Core 9
Download from http://java.sun.com/products/archive/j2se/1.3.1_20/index.html (was hard to find!)
After installing get the following error:
[mbaudier@cannedheat jdk]$ ./jdk1.3.1_20/bin/java -version /home/mbaudier/dev/jdk/jdk1.3.1_20/bin/i386/native_threads/java: error while loading shared libraries: libstdc++-libc6.1-1.so.2: cannot open shared object file: No such file or directory
Solution (make sure your compat c++ packages are installed):
ln -s /usr/lib/libstdc++-3-libc6.2-2-2.10.0.so /usr/lib/libstdc++-libc6.1-1.so.2
Thanks to http://ubuntuforums.org/archive/index.php/t-347358.html for the solution, it apparently works on Ubuntu as well.
