Gnutella Forums  

Go Back   Gnutella Forums > Current Gnutella Client Forums > LimeWire+WireShare (Cross-platform) > Technical Support > General Linux Support
Register FAQ The Twelve Commandments Members List Calendar Arcade Find the Best VPN Today's Posts

General Linux Support For questions regarding use of LimeWire or WireShare or related questions on the Linux operating system. This includes installation questions and answers. (Check the Stickies marked in Red at top of this section.)


Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old November 4th, 2001
Unregistered
Guest
 
Posts: n/a
Question ARGH! Help with install problems please

I've tried installing from the install bin and tried twists way of installing and can't get it to work... I've been trying for like 6 hours.. hear are my error messages.. I've tried all the solutions in the forums and it won't work.. it seems to be trying to point to a /usr/java/lang dir which does not exist..
HELP!

From LimeWireLinux.bin /w Install:

Error: Unrecognized JVM specific option `-Xmx50331648'.
Error: Unrecognized JVM specific option `-Xms16777216'.
This Java Application has encountered an unexpected error and will now exit. (LAX)

Stack Trace:
java.lang.NoClassDefFoundError: ZeroGab
at ZeroGr.<init>([DashoPro-V1.2-120198]:line unknown, pc 0x874a98c)
at com.zerog.ia.installer.Main.a([DashoPro-V1.2-120198]:line unknown, pc 0x8879982)
at com.zerog.ia.installer.Main.b([DashoPro-V1.2-120198]:line unknown, pc 0x8854130)
at com.zerog.ia.installer.Main.main([DashoPro-V1.2-120198]:line unknown, pc 0x840aa74)
at java.lang.reflect.Method.linvoke(Method.java:nativ e)
at com.zerog.lax.LAX.launch([DashoPro-V1.2-120198]:line unknown, pc 0x829d9d6)
at com.zerog.lax.LAX.main([DashoPro-V1.2-120198]:line unknown, pc 0x81d036f)

From LimeWireLinux.tgz using twist's method for install and alternate runlime.sh:

Internal error: caught an unexpected exception.
Please check your CLASSPATH and your installation.
java/lang/ClassNotFoundException: /usr/local/LimeWire:/usr/local/LimeWire/LimeWire/jar:/usr/local/LimeWire/collections/jar
at java.lang.Class.forName(Class.java:native)
at java.lang.Class.forName(Class.java:53)
/usr/local/LimeWire/runlime.sh: Line 32: 2484 Aborted (core dumped) java -cp $CLASS_DIR/LimeWire.jar:$CLASS_DIR/collections.jar RunLime

Please say someone knows what my problem is...

Chris Routh
AKA: Routhy
The Den of Amateur Writing
http://www.routhy.net
21852940
Reply With Quote
  #2 (permalink)  
Old November 4th, 2001
twist's Avatar
Bum
 
Join Date: September 19th, 2001
Location: No fixed abode
Posts: 45
twist is flying high
Smile Kaffe

You have Kaffe installed. Kaffe is an open source implementation of Java that (mostly) implements Java 1.1.

http://www.kaffe.org

Unless you need it for some reason I suggest you remove it from your system. Then just make sure you have either the JRE or JDK 1.3.1 installed and added to your path and you should be ready to go. Open a terminal and use the command:

java -version

To see which version of java is executing.
Reply With Quote
  #3 (permalink)  
Old November 5th, 2001
Unregistered
Guest
 
Posts: n/a
Default Thanks.. but new prob now

You were right.. and I reinstalled JRE.. but now I'm getting this:

bash: java: command not found.

now what am I missing?

Chris
Reply With Quote
  #4 (permalink)  
Old November 5th, 2001
twist's Avatar
Bum
 
Join Date: September 19th, 2001
Location: No fixed abode
Posts: 45
twist is flying high
Smile Path

In order for bash for find the java program it has to know where to look for it. You can list directories to be searched for programs in the PATH environment variable. Whenever you try to run a program, bash looks at this variable and searches the directories listed trying to find a match. If one is found, that program is run. You can set the PATH in either the ~/.bash_profile or /etc/profile configuration files. ~/.bash_profile is specific to your user while /etc/profile is a system wide configuration.

You need to append the directory where your java program lives on to this PATH list. Here's an example (from my system) of setting the PATH:

PATH=$PATH:$HOME/bin:/usr/java/jdk1.3.1/bin

On my system it's /usr/java/jdk1.3.1/bin. Yours will be different! You have to find the java bin directory on your system. It'll be something like /usr/java/jre1.3.1/bin but check to make sure.

To edit either /etc/profile or ~/.bash_profile just open them in a text editor and find the existing PATH= line (there probably is one) and add :/yourjavadirhere on to the end of it. Note that each entry in the PATH line is separated by a colon.

Then make sure PATH appears in an export line further on in the file. PATH may be on it's own or with other variables, it doesn't matter. eg

export PATH

Save the file. Log out, log back in, and test everything by opening a terminal and typing:

java -version

You should see the java version information. And that's it! Try to fire up LimeWire!

There have been many posts in this forum on this topic. If you have any trouble try reading some of those. Some have links to good sites with information on the PATH variable.

Last edited by twist; November 5th, 2001 at 04:20 AM.
Reply With Quote
  #5 (permalink)  
Old November 5th, 2001
Unregistered
Guest
 
Posts: n/a
Default Already done

I had done all that before.. I checked again but it still isn't working.. same message... I don't have the .bash_profile directory on any users on my system either, so it's only set in the /etc/profile

I'm getting really lost here

Chris
Reply With Quote
  #6 (permalink)  
Old November 5th, 2001
twist's Avatar
Bum
 
Join Date: September 19th, 2001
Location: No fixed abode
Posts: 45
twist is flying high
Smile Path

.bash_profile is just a text file in the home directory of each user (~/.bash_profile). If it's not there you can create it. Alternatively, there may be .bash_login or .profile files present. These are also used by bash for configuration. (The files are read in by bash the order .bash_profile, .bash_login, and .profile).

However, since you already have the PATH set in /etc/profile you shouldn't need to worry about this.

There could be two reasons why it isn't working. 1. The directory you've listed is incorrect or 2. The PATH variable isn't exported.
Reply With Quote
  #7 (permalink)  
Old November 6th, 2001
Novicius
 
Join Date: November 4th, 2001
Location: Brockville Ontario, Canada
Posts: 3
Routhy is flying high
Default Could it be anything else?

My path is right.. and it's being exported.. I can post a copy of my /etc/profile if you'd like

Chris
Reply With Quote
  #8 (permalink)  
Old November 6th, 2001
Novicius
 
Join Date: November 4th, 2001
Location: Brockville Ontario, Canada
Posts: 3
Routhy is flying high
Lightbulb Oh, jeese nm, I got it working

I was checking my bashrc file in /etc instead of the .bashrc file in my home dir... duh.. I just had to put the path in there.. thanks for your time..

the only thing wrong now is when I use your modified runlime.sh I get a

font specified in font.properties not found

it's looking for symbol.. can I fix this?

and was wondering if you could suggest anyone to help me with a few problems I'm haveing elsewhere in linux.. (I'm still fairly new...as if yuo couldn't tell)

Chris
Reply With Quote
  #9 (permalink)  
Old November 6th, 2001
twist's Avatar
Bum
 
Join Date: September 19th, 2001
Location: No fixed abode
Posts: 45
twist is flying high
Smile Font properties

It's a problem with the font.properties file that Java uses. There's a revised file which you can download and replace the old one with. Check out the font properties section of the Java release notes at:

http://java.sun.com/j2se/1.3/relnotes.html

To learn more about Linux it's probably best to borrow a book from the library or buy a book on Linux. You can also try some general Linux help and documentation sites such as:

http://www.linuxnewbie.org
http://www.linux.org
http://www.linuxdoc.org
http://www.linux.com
http://www.redhat.com (Or the site of whichever distro you use)

You can also read the comp.os.linux newsgroups. There are heaps of ways to find out more! :)

Last edited by twist; November 6th, 2001 at 04:07 AM.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Argh Plz Help Lestats-Gurl Chat - Open Topics - The Lounge 2 September 18th, 2006 09:37 AM
argh! kissmeimconfused Connection Problems 1 June 17th, 2005 12:33 PM
Argh! VixyChic Download/Upload Problems 2 August 21st, 2004 08:29 PM
ARGH! AVI, Requery Sent AssassinOfGates Download/Upload Problems 1 August 22nd, 2002 07:37 AM
argh lazy_chango Connection Problems 0 July 5th, 2001 09:14 AM


All times are GMT -7. The time now is 07:01 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
SEO by vBSEO 3.6.0 ©2011, Crawlability, Inc.

Copyright © 2020 Gnutella Forums.
All Rights Reserved.