View Single Post
  #2 (permalink)  
Old October 8th, 2002
Unregistered
Guest
 
Posts: n/a
Talking Fix if using RPM's.

1. Uninstall the program JRE 1.3.1_04. This can easily be accomplished if you use RPM's by opening the KPackage manager. Once in KPackage select File > Find Package. Type in "jre" (omit the quotes). This should find the RPM. With it highlighted select uninstall. Please note you must be superuser to do this.

2. Download the latest j2re by following this link to the Sun website.

http://java.sun.com/j2se/1.4/download.html

3. Save this file to disk and remember the location!

4. Execute the bin file.

5. This should extract the RPM.

I will assume you have already installed LimeWire since you are executing the runLime.sh and are getting the error (I got this same error as well).

6. Edit the script to look like the following. One note though, the line cd /usr/local/LimeWire is the directory where I installed LimeWire. Replace this path with the directory you use. This little trick helps me run it from a desktop shortcut.


#!/bin/sh
#
# Runs LimeWire. This script must be executed in your LimeWire
# install directory.
#
# We must set the J2SE_PREEMPTCLOSE environment variable to 1 to
# work around some limitations in the JDK1.3. For more information
# see http://java.sun.com/j2se/1.3/relnotes.html#vm
#
cd /usr/local/LimeWire
CLASSPATH=".:collections.jar:xerces.jar:jl011.jar: MessagesBundles.jar"
export CLASSPATH
J2SE_PREEMPTCLOSE=1
export J2SE_PREEMPTCLOSE
/usr/java/j2re1.4.0_02/bin/java -jar RunLime.jar


Regards,
Bob
Suwanee, GA U.S.A
Reply With Quote