Mar 25
Installing Java 1.5 on Mac OS X Panther
Posted by James Netherton | Wednesday 25 March 2009 21:49 PM | In Java, Mac
There is no official support for running / installing Java versions greater than 1.4 on Mac OS X Panther. Here’s how I installed and configured my old Mac Mini G4 OS X Panther machine to run Java 1.5.
1. Download and install Pacifist
2. Download Java 1.5 from the Apple website and run the .dmg file
3. Start Pacifist. Drag the .pkg install file from the mounted Java .dmg file. Select the root of the package hierarchy and click the install button
4. When prompted to overwrite existing files choose ‘Leave Alone’
5. When the installation process has completed you can now set the default Java VM to 1.5. Open a terminal session and run the following:
cd /System/Library/Frameworks/JavaVM.framework/Versions
sudo ln -fhsv 1.5 CurrentJDK
Confirm that everything has worked by executing java -version from the command line.