Gnutella Forums

Gnutella Forums (https://www.gnutellaforums.com/)
-   General Linux Support (https://www.gnutellaforums.com/general-linux-support/)
-   -   The Solution To All Install Problems (https://www.gnutellaforums.com/general-linux-support/11187-solution-all-install-problems.html)

mrbucket666 December 1st, 2002 04:49 PM

Re: Can't find libc.so.6
 
Quote:

Originally posted by Unregistered
I run SuSE 8.1
When I try to run the installer "sh ./LimeWireLinux.bin" it starts and then complains that it cannot find libc.so.6 although i have the file. I probably need to do a symlink somewhere. Anybody knows where and under what name?

Tony

i have the same exact problem with suse 8.1 :S

nDiScReEt December 3rd, 2002 06:23 PM

Re: Re: Can't find libc.so.6 (Repost)
 
Quote:

Originally posted by mrbucket666
i have the same exact problem with suse 8.1 :S
Rex forgot to mention that you would have to create that link in the actual directory where libstdc++-libc6.2-2.so.3 is located. What Rex is doing is providing a link to the old libc6.1-1.so.2 as that is no longer seen libstdc++2.10-2.96-0.80mdk for my mandrake package which is actually symlinked to /usr/lib/libstdc++-3-libc6.2-2-2.10.0.so.

To find out where your libstdc++-3-libc6.2-2-2.10.0.so is located type this command:

whereis libstdc++-3-libc6.2-2-2.10.0.so

find that and then symlink it like this to keep symlinks to a minimum (ie to avoide a symlink to a symlink that is symlinked to an actual file) follow these instructions;

First, go to the directory where the whereis program located your file and then type:

ls -l libstdc++*

we type this command to check to see if the symlink:

libstdc++-libc6.2-2.so.2

isn't already present. If it isn't then create the symlink:

ln -s libstdc++-3-libc6.2-2-2.10.0.so libstdc++-libc6.2-2.so.2


Thank you Rex for posting the solution to the Suse 8.1 runtime issue with glibc-type error messages when trying to execute limewire after a successful install, as I couldn't since I had to remove Suse 8.1 to reconfigure my development box.

altoine

This should help you. I would post it to my solutions but it has two maybe three things that make it a no-no:

1. It is specific only to that distribution and version (Suse 8.1 only).

2. It is too advanced to discuss as an added step, especially when you see reason #1.

3. I didn't get approval from Rex to post his solution as an added option for Suse 8.1 users. I could assume it was ok except that when you consider reason #1.

If it is still present in Suse 8.2+ I will then post this as an added step in proper install solutions.

altoine

ClayD December 20th, 2002 12:21 PM

RedHat 8.0 No Virtual Machine
 
Thank you for this thread, nDiScReEt. I did not view it at first, because it was very long. I thought it would be a general discussion, but when I read it I was surprised to see how many different and specific installation problems were addressed.

I'm afraid I may be misunderstanding some of the solutions. That's probably because I am a Linux novice and don't know the difference between Debian, Mandrake, and RedHat.

I found a problem very similar to mine. It is the missing Virtual Machine line for RedHat 8.0. I recently installed the most recent version of java, j2re-1.4.1.01 . Here is what my terminal says when I try to install LimeWire:

[root@localhost root]# /tmp
[root@localhost tmp]# sh ./LimeWireLinux.bin
Preparing to install...
Extracting the installation resources from the installer archive...
Configuring the installer for this system's environment...
No java virtual machine could be found from your PATH environment variable. You must install a VM prior to running this program.
[root@localhost tmp]#

I downloaded my java to my /tmp directory rather than home. Was that a mistake?

Maybe another problem would be my choice of terminal? I used the java -version command in my terminal (KDE X Terminal, Konsole 1.1.3) as "root." You mentioned a vi terminal, but I really don't know what it is. I tried to run vi in the run program,. but got nothing. When I ran the java -version command in KDE X Terminal, I got the following:

bash: java: command not found

That occurred before and after I ran the install line, which you suggested to Unregistered, but get a reply that the package is already installed!

It is installed at /usr/java

BUT - when I run java -version, I get the command not found line above.

Have I made a fundamental error somewhere?

Can you get me on track?

Thanks in advance,

ClayD

nDiScReEt December 20th, 2002 02:33 PM

Re: RedHat 8.0 No Virtual Machine
 
Quote:

Originally posted by ClayD
Thank you for this thread, nDiScReEt. I did not view it at first, because it was very long. I thought it would be a general discussion, but when I read it I was surprised to see how many different and specific installation problems were addressed.

I'm afraid I may be misunderstanding some of the solutions. That's probably because I am a Linux novice and don't know the difference between Debian, Mandrake, and RedHat.

I found a problem very similar to mine. It is the missing Virtual Machine line for RedHat 8.0. I recently installed the most recent version of java, j2re-1.4.1.01 . Here is what my terminal says when I try to install LimeWire:

[root@localhost root]# /tmp
[root@localhost tmp]# sh
Thanks in advance,

ClayD

A few program clarifications before we begin:

vi is an editor like kate, kedit, emacs, and notepad.

A terminal is similiar to a "dos prompt" and the linux equivalents are Konsole, rxvt, Eterm, and Gnome Terminal.

Now onto your problem...

Let us define "installed" first. When you "installed" java to the /tmp directory, do you mean that is where you downloaded the java package? ...or where you directed the installation of java? Is this by means of a tar.gz file or rpm?

Let us assume that you are using a rpm. So, it is located in your /tmp directory.

Let us avoid "forcing" an install of your program on your system and simply remove and then reinstall your program.
Type this command into your kde terminal (as root):

su -c "rpm -e j2sdk-1.4.1_01-fcs" (this assumes you used the latest sun java package *Note**Replace "j2sdk with j2re if that is the package you used* ***Addedd Note***su -c is a "super user" command to execute a command as root. With the added flag "-c", it only allows you to execute the command following it once. The """ quotes are added because they are needed when there are spaces in a command string.****)

Now let us reinstall your package:

su -c "rpm -ivh /tmp/j2sdk-1.4.1_01*.rpm"

or

su -c "rpm -ivh /tmp/j2re-1.4.1_01*.rpm"

(Which one depends on if you downloaded the sdk (software development kit) or jre (java run-time environment). Thankfully, from this point we are finished with root!

Next, your command:

java -version

This time it should spit out some happy output:

Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_01-b01)
Java HotSpot(TM) Client VM (build 1.4.1_01-b01, mixed mode

We want to next create the necessary environment variables in your .bash_profile or .bashrc which is located in your home directory ($HOME, ~/, or /home/(username))

Continuing writing commands from the command line:

kwrite $HOME/.bash_profile

or

kwrite $HOME/.bashrc

Replace "kwrite" with "kate" if you don't have kwrite installed on your system.

From there add the two lines:

export JAVA_HOME=/usr/java/j2sdk1.4.1_01
export PATH=$JAVA_HOME/bin:$PATH

Save and quit out of "kwrite" or "kate".

Back to the terminal, type this command:

source .bash_profile

or

source .bashrc

Now, when you run this command:

which java

you should get:

/usr/java/j2sdk1.4.1_01/bin/java


NOw you can install LimeWire as usual.

HTH

altoine

Darylf December 20th, 2002 03:16 PM

Java will NOT install right!!!!!!!!!!!!!!!!
 
Hi, I did excatly what is posted, with the j2sdk file and i can not get it to install right,

when i type: java -version
I get not a vaild command
when i type: which java
I get a no java in .........................

So what am i doing wrong? I have tried to re-install the file but it keeps saying that the file (j2sdk) is already installed?

Window user getting really mad a linux.

thanks
Daryl

guyintoronto December 26th, 2002 04:04 PM

can't get mine working either, i have installed BOTH the jre and jdk versions. If i look in my browser plugins it says that i have java installed (i manually linked it to there). So i can use chat online and the like. However, when i type in "java -version" i get "command not found"

I tried installing limewire and it says that there is no VM installed.

I read a lot of the posts, but did't see anything that clearly answers this. Help would be appreciated. Thanks in advance!

nDiScReEt December 29th, 2002 02:04 AM

ClayD and guyintoronto
 
I would really much love to help you two but there is this serious lack of information. I don't have any idea as to what steps you have done to arrive at your delimma. I would appreciate if you two could mention line for line like I did in my instructions, the steps you did. Either that or create a symlink to your "/usr/bin" directory from your java binary. Example:

ln -s /usr/java/j2sdk-1.4.1-01/bin/java /usr/bin/java

I mention the use of this symlink because I think your system does not load your .bash_profile or .bashrc when you first login. I am currently experiencing this with my gentoo installation but It works nonetheless using the symlink above (Of course, link the java binary to your specific installation directory).

I am hunting down the source of my problem with why my .bash_profile is not being used at logon.

The only thing that troubles me is that even if your system doesn't use your .bash_profile at logon, the "source .bash_profile" or "source .bashrc" command should still setup your environment for useage with LimeWire.

My only conclusion is that there is a typo and it needs to be ferreted out. The typo begins in either "export JAVA_HOME=/usr/java/" or in "export PATH=JAVA_HOME/bin/:$PATH".

altoine

sp1d3rm January 1st, 2003 04:47 PM

problem installin' limewire
 
i tried to install the limewire and i got this message:

Preparing to install...
Extracting the installation resources from the installer archive...
Configuring the installer for this system's environment...

Launching installer...

Exception in thread "main" java.lang.NoClassDefFoundError: com/zerog/lax/LAX

i've installed j2re-1_4_1_01-fcs-linux-i586.rpm
pliz
what should i do to get my problem solved?

thx a lot

nDiScReEt January 1st, 2003 10:12 PM

Re: problem installin' limewire
 
Quote:

Originally posted by sp1d3rm
i tried to install the limewire and i got this message:

Preparing to install...
Extracting the installation resources from the installer archive...
Configuring the installer for this system's environment...

Launching installer...

Exception in thread "main" java.lang.NoClassDefFoundError: com/zerog/lax/LAX

i've installed j2re-1_4_1_01-fcs-linux-i586.rpm
pliz
what should i do to get my problem solved?

thx a lot

Can you get the correct output by doing:

java -version

or

which java

?

totothehero January 23rd, 2003 06:32 PM

Java woes
 
I've run through the process successfully (that is, gotten LimeWire to run just fine on several occasions); recently, though, and rather inexplicably, I've needed to "source /etc/.bash_profile" in order for "java -version" to work each time I run a new terminal. Also, after i get java recognized (it prints just what it should for both "java -version" and "which java") and run "sh /usr/LimeWire/runLime.sh", the following prints:
"Exception in thread "main" java.util.zip.ZipException: No such file or directory
at java.util.zip.ZipFile.open(Native Method)
at java.util.zip.ZipFile.<init>(ZipFile.java:112)
at java.util.jar.JarFile.<init>(JarFile.java:117)
at java.util.jar.JarFile.<init>(JarFile.java:55)"

I don't know anything about java (or that much regarding linux, for that matter), so I am quite puzzled by this. any thoughts?
Thanks much

nDiScReEt January 23rd, 2003 06:41 PM

Re: Java woes
 
Quote:

Originally posted by totothehero
I've run through the process successfully (that is, gotten LimeWire to run just fine on several occasions); recently, though, and rather inexplicably, I've needed to "source /etc/.bash_profile" in order for "java -version" to work each time I run a new terminal. Also, after i get java recognized (it prints just what it should for both "java -version" and "which java") and run "sh /usr/LimeWire/runLime.sh", the following prints:
"Exception in thread "main" java.util.zip.ZipException: No such file or directory
at java.util.zip.ZipFile.open(Native Method)
at java.util.zip.ZipFile.<init>(ZipFile.java:112)
at java.util.jar.JarFile.<init>(JarFile.java:117)
at java.util.jar.JarFile.<init>(JarFile.java:55)"

I don't know anything about java (or that much regarding linux, for that matter), so I am quite puzzled by this. any thoughts?
Thanks much

Try:
sh /usr/LimeWire/LimeWire

altoine.

P.S. I'm receiving similiar using gentoo. I will try to locate the problem if I can and post a solution to that. Something to do with the terminals.

totothehero January 23rd, 2003 07:42 PM

no luck
 
I get a no such file or directory when i try that...perhaps because it's LimeWire.jar?

thanks again (and this thread has been a great resource!)
will

nDiScReEt January 23rd, 2003 08:21 PM

Re: no luck
 
Quote:

Originally posted by totothehero
I get a no such file or directory when i try that...perhaps because it's LimeWire.jar?

thanks again (and this thread has been a great resource!)
will

That is weird. I just installed it on my system again to double check. I have it under the directory where I installed LimeWire. I noticed in your first post that runLime.sh was referenced under /usr/LimeWire. You can use LimeWire.jar just run this command:

java -jar LimeWire.jar

altoine

totothehero January 23rd, 2003 08:29 PM

Thanks!
 
program works! thanks so much for the help. I still need to "source ~/.bash_profile" before i run the .jar file...anyway around this? this is a minor problem, though. i can just write a script for myself if need be.
great work!

nDiScReEt January 23rd, 2003 09:28 PM

Re: Thanks!
 
Quote:

Originally posted by totothehero
program works! thanks so much for the help. I still need to "source ~/.bash_profile" before i run the .jar file...anyway around this? this is a minor problem, though. i can just write a script for myself if need be.
great work!

Your welcome and thank you for the positive feedback. In regards to having to run source .bash_profile for every terminal, the solution depends on what WM(Window Manager) you use.

If you use KDE, add "--login" at the beginning of the startkde script like so:

#!/bin/bash --login

That should fix your problem in KDE. I am currently trying to find a solution for openbox/fluxbox/blackbox (my preferred WM of choice).

altoine

dave00 March 16th, 2003 04:24 AM

funny installation errors
 
I get the following errors when trying to install Limewire on my system. It is a shared system and as such i have limited access. I can only write to my home directory and very little else.

Preparing to install...
Extracting the installation resources from the installer archive...
Configuring the installer for this system's environment...

Launching installer...

Error: Unrecognized JVM specific option `-Xmx100331648'.
Error: Unrecognized JVM specific option `-Xms16777216'.
Invocation of this Java Application has caused an InvocationTargetException. This application will now exit. (LAX)

Stack Trace:
java.lang.NoClassDefFoundError: ZeroGd9
at ZeroGed.a(source file unknown:line unknown, pc 0x891b04a)
at ZeroGee.<init>(source file unknown:line unknown, pc 0x8cf698b)
at ZeroGed.<init>(source file unknown:line unknown, pc 0x8ced83a)
at ZeroGdv.a(source file unknown:line unknown, pc 0x8ce2719)
at com.zerog.ia.installer.Main.a(source file unknown:line unknown, pc 0x8c3c111)
at com.zerog.ia.installer.Main.c(source file unknown:line unknown, pc 0x8c221ac)
at com.zerog.ia.installer.Main.main(source file unknown:line unknown, pc 0x831dac2)
at java.lang.reflect.Method.invoke(Method.java:native )
at com.zerog.lax.LAX.launch(source file unknown:line unknown, pc 0x829f9d6)
at com.zerog.lax.LAX.main(source file unknown:line unknown, pc 0x81f73eb)

trap_jaw March 16th, 2003 04:55 AM

Which java version are you using? I suggest you try downloading and installing Sun's latest JRE.

nDiScReEt March 18th, 2003 05:19 PM

For Zero-Privileged Access (Non root)
 
Follow these instructions:

1.) Download the latest sun java jre to your home directory.

2.) Unpack the sun package (sh +javajrepackagenamehere+.bin)

3.) Unpack the sun java jre tarball (tar -xzvf +javajrepackagenamehere+.tar.gz)

4.) Make note of the newly created java directory (ie ls $HOME/j2re **Replace jre with the actual name of the directory** This is to insure that the path is valid).

5.) Edit your .bash_profile or .bashrc file and point the $JAVA_HOME path to your java directory located in your home directory (ie /home/nonrootuser **Of course, replace "nonrootuser" with the name of the home directory for the account you are making changes).

6.) Add your "$JAVA_HOME/bin" first into your $PATH statement and place "/usr/bin" at the end. You might have to remove "/usr/bin" totally from your $PATH statement if the above suggestion of putting it at the end doesn't work.

7.) Save and then run:

source .bashrc or .bash_profile.

8.) Then you can install LimeWire as usual.

bennymikie December 17th, 2003 09:24 PM

Good Solutions
 
I'm running Mandrake 9.2, and your solution worked for me. Thanks!

skeeleraar December 23rd, 2003 04:20 AM

thankyouthankyouthankyou
i spend several hours trying to figure it all out myself, but with no luck
ur solution worked perfectly on my suse

thanks mate

great guide

greetz steve

splyderman December 26th, 2003 07:20 PM

Terrific!
 
That was the best user forum "form" I have seen in four days. Thank you very much for taking the time to post step by step instructions on the Limewire installation. I have been on the net for over 42hrs trying to find a way to get limewire in, I got a lot of bits and pieces, in a lot of different forums, f.a.q's, etc. I am not a programmer so that puts me at a disadvantage using Linux, I am new, but determined.... Installing programs could use some refining. You could make a fortune writing true newbie help programs.

Thanks again.

v6vitanic December 28th, 2003 02:41 AM

Solution to all Install problems?
 
Thanks for the posted Info, it has gotten me a stage further than I was before! however..... I am having more problems... It may be something to do with my Java, I dont know. I have pasted the Terminal session below, can you see if you can throw any light on it? I have only been using Linux for just over 6 weeks now, and my knowledge is a little bit limited, to say the least! FYI, i am running on Mandrake 9.2, AMD K6 processor, with 392MB RAM

Thanks, JRH

Terminal Paste:

[root@localhost java]# vi .bash_profile
[root@localhost java]# source .bash_profile
[root@localhost java]# rpm -e kaffe --nodeps
error: package kaffe is not installed
[root@localhost java]# su jrh
[jrh@localhost java]$ cd home
[jrh@localhost home]$ cd jrh
[jrh@localhost jrh]$ cd Desktop
[jrh@localhost Desktop]$ ls
Ed2k@ LimeWireLinux.bin Mozilla.desktop Sylpheed Claws.desktop
[jrh@localhost Desktop]$ ./LimeWireLinux.bin
bash: ./LimeWireLinux.bin: Permission denied
[jrh@localhost Desktop]$ chmod +x LimeWireLinux.bin
[jrh@localhost Desktop]$ ./LimeWireLinux.bin
Preparing to install...
tail: `-1' option is obsolete; use `-n 1'
Try `tail --help' for more information.
./LimeWireLinux.bin: line 326: [: `)' expected, found -z
WARNING! The amount of /tmp disk space required and/or available
could not be determined. The installation will be attempted anyway.
Extracting the installation resources from the installer archive...
Configuring the installer for this system's environment...

Launching installer...

Xlib: connection to ":0.0" refused by server
Xlib: No protocol specified

Invocation of this Java Application has caused an InvocationTargetException. This application will now exit. (LAX)

Stack Trace:
java.lang.NoClassDefFoundError
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:141)
at java.awt.GraphicsEnvironment.getLocalGraphicsEnvir onment(GraphicsEnvironment.java:62)
at java.awt.Window.init(Window.java:231)
at java.awt.Window.<init>(Window.java:275)
at java.awt.Frame.<init>(Frame.java:401)
at java.awt.Frame.<init>(Frame.java:366)
at com.zerog.ia.installer.Main.c(Unknown Source)
at com.zerog.ia.installer.Main.main(Unknown Source)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Nativ e Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Native MethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(De legatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at com.zerog.lax.LAX.launch(Unknown Source)
at com.zerog.lax.LAX.main(Unknown Source)
GUI-
[jrh@localhost Desktop]$

Can anyone decipher that lot?? :-)

v6vitanic December 28th, 2003 02:52 AM

Answer to all Installation Problems?
 
Further to my last post, I tried killing my firewall, and having another go at installation, just in case it was preventing connection (as it appeared to say in the error message)... and Now I have gotten this!! How come? after I updated the bash profile and saved it?? It would appear my Linux system is about as stable as a psychopath!... Here Is what I got....

[jrh@localhost jrh]$ cd Desktop
[jrh@localhost Desktop]$ ./LimeWireLinux.bin
Preparing to install...
tail: `-1' option is obsolete; use `-n 1'
Try `tail --help' for more information.
./LimeWireLinux.bin: line 326: [: `)' expected, found -z
WARNING! The amount of /tmp disk space required and/or available
could not be determined. The installation will be attempted anyway.
Extracting the installation resources from the installer archive...
Configuring the installer for this system's environment...
No Java virtual machine could be found from your PATH
environment variable. You must install a VM prior to
running this program.
[jrh@localhost Desktop]$

Could soon be a case of Windows here I come :-)

JRH

nDiScReEt December 29th, 2003 10:42 AM

Re: Answer to all Installation Problems?
 
Quote:

Originally posted by v6vitanic
Further to my last post, I tried killing my firewall, and having another go at installation, just in case it was preventing connection (as it appeared to say in the error message)..
Could soon be a case of Windows here I come :-)
JRH

Sounds like you downloaded the wrong java package. Don't choose the first one under "Download NetBeans IDE v 3.5.1 with J2SE v 1.4.2 COBUNDLE". Instead download the linux java package under "Download J2SE v 1.4.2_03". That is why you are getting the errors that you are receiving. As far as the firewall, it normally can get out so don't disable it for now. Plus, could you post the exact message that your error logs says in regards to your firewall? That should have nothing to do with your program from at least installing and properly initializing, but it might be informative for a potential problem to come in regards to potential connection issues.

HTH

altoine

alarm January 16th, 2004 03:39 PM

Warning for amount and error
 
Hey. i Installed succesfully i think Java.

[alarm@localhost alarm]$ java -version
java version "1.4.2_03"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_03-b02)
Java HotSpot(TM) Client VM (build 1.4.2_03-b02, mixed mode)
[alarm@localhost alarm]$

reading this seems to be ok. the Problem is when i try to installed Limewire i get this error. I couldnt figure out what to do to solve it. Here is the problem:

[alarm@localhost alarm]$ sh ./LimeWireLinux.bin
Preparing to install...
tail: `-1' option is obsolete; use `-n 1'
Try `tail --help' for more information.
./LimeWireLinux.bin: line 326: [: `)' expected, found -z
WARNING! The amount of /tmp disk space required and/or available
could not be determined. The installation will be attempted anyway.
Extracting the installation resources from the installer archive...
Configuring the installer for this system's environment...

Launching installer...

kaffe-bin: utf8const.c:394: utf8ConstInit: Assertion `hashTable != ((void *)0)'
failed.
./LimeWireLinux.bin: line 1: 5358 Segmentation fault "/usr/lib/kaffe/bin/j
ava" -Djava.compiler=NONE -Xmx100331648 -Xms16777216 com.zerog.lax.LAX "/tmp/ins
tall.dir.5246/temp.lax" "/tmp/env.properties.5246"
[alarm@localhost alarm]$


thank u in advance guys

mzulkoski January 19th, 2004 05:53 PM

I use Mandrake 9.1

I edited /home/mike/.bashrc to add the export command there. Simple and works like a charm.

##########
contents of old .bashrc
##########

# .bashrc

# User specific aliases and functions

# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi

##########
contents of edited .bashrc
##########

# .bashrc

# User specific aliases and functions

# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi

export JAVA_HOME=/usr/java/j2re1.4.2_03
export PATH=$JAVA_HOME/bin:$PATH

#########

Mike

Captain Tom USA January 20th, 2004 03:10 PM

Limewire cannot find java vm
 
I've installed the Java j2sdk like you said and LimeWire, but everytime I run "./LimeWireLinux.bin" it comes up "No java virtual machine could be found in your PATH. I've set the path in the .bash_profile and .bashrc files just like you show. What else can I try to get limewire to install and run on my RedHat 7? I know it's old but it's all I got right now. Any help would be appreciated here or email me at tlangham@bellsouth.net

Unregd68853546374881 March 31st, 2004 11:05 AM

Thanks
 
thanks this worked all i really needed to do was set the path in my bash profile its installed now im on to figuring out how to use it

reoplex April 11th, 2004 06:56 PM

Thanks :) everything worked nicely

santosh May 5th, 2004 11:34 PM

using redhat 9
 
when i run limewirelinux.bin i got this


Warning: -Xmx100331648 not understood. Ignoring.
Warning: -Xms16777216 not understood. Ignoring.
Exception in thread "main" java.lang.InternalError: Unexpected exception while defining class ZeroGq: java.lang.ClassNotFoundException: javax.swing.JDialog
at 0x40268e17: java.lang.Throwable.Throwable(java.lang.String) (/usr/lib/./libgcj.so.3)
at 0x4025bc8e: java.lang.Error.Error(java.lang.String) (/usr/lib/./libgcj.so.3)
at 0x402691fa: java.lang.VirtualMachineError.VirtualMachineError( java.lang.String) (/usr/lib/./libgcj.so.3)
at 0x4025d62e: java.lang.InternalError.InternalError(java.lang.St ring) (/usr/lib/./libgcj.so.3)
at 0x4025ac2f: java.lang.ClassLoader.defineClass(java.lang.String , byte[], int, int, java.security.ProtectionDomain) (/usr/lib/./libgcj.so.3)
at 0x4025aa13: java.lang.ClassLoader.defineClass(java.lang.String , byte[], int, int) (/usr/lib/./libgcj.so.3)
at 0x402f1f2e: java.net.URLClassLoader.findClass(java.lang.String ) (/usr/lib/./libgcj.so.3)
at 0x40248197: gnu.gcj.runtime.VMClassLoader.findClass(java.lang. String) (/usr/lib/./libgcj.so.3)
at 0x4025a904: java.lang.ClassLoader.loadClass(java.lang.String, boolean) (/usr/lib/./libgcj.so.3)
at 0x4024889c: _Jv_FindClass(_Jv_Utf8Const, java.lang.ClassLoader) (/usr/lib/./libgcj.so.3)
at 0x40244cdd: java.lang.Class.forName(java.lang.String, boolean, java.lang.ClassLoader) (/usr/lib/./libgcj.so.3)
at 0x4023b4cf: _Jv_BytecodeVerifier.verify_instructions_0() (/usr/lib/./libgcj.so.3)
at 0x40231857: _Jv_VerifyMethod(_Jv_InterpMethod) (/usr/lib/./libgcj.so.3)
at 0x40229ae4: _Jv_PrepareClass(java.lang.Class) (/usr/lib/./libgcj.so.3)
at 0x40248028: java.lang.ClassLoader.linkClass0(java.lang.Class) (/usr/lib/./libgcj.so.3)
at 0x4025acb3: java.lang.ClassLoader.resolveClass0(java.lang.Clas s) (/usr/lib/./libgcj.so.3)
at 0x4024646c: java.lang.Class.initializeClass() (/usr/lib/./libgcj.so.3)
at 0x40244d04: java.lang.Class.forName(java.lang.String, boolean, java.lang.ClassLoader) (/usr/lib/./libgcj.so.3)
at 0x40244d9f: java.lang.Class.forName(java.lang.String) (/usr/lib/./libgcj.so.3)
at 0x402ad01d: gnu.gcj.runtime.FirstThread.run() (/usr/lib/./libgcj.so.3)
at 0x4024fc4c: _Jv_ThreadRun(java.lang.Thread) (/usr/lib/./libgcj.so.3)
at 0x4021c8ac: _Jv_RunMain(java.lang.Class, byte const, int, byte const, boolean) (/usr/lib/./libgcj.so.3)
at 0x08048910: __gcj_personality_v0 (java.compiler=NONE)
at 0x42015574: __libc_start_main (/lib/tls/libc.so.6)
at 0x080486c1: _Jv_RegisterClasses (java.compiler=NONE)



plz help me

distortedstar May 16th, 2004 06:14 PM

Great Post!
 
Thank you so much for a great post! Got me up and running in no time...

sheds November 14th, 2004 09:56 PM

I found a simpler way to avoid having to run export so many times and do so many things, here it is:

1. Install java in the normal way
2. Change directory to where you downloaded LimeWireLinux.bin
3. Type: $ PATH=$PATH:/usr/java/j2sdk1.4.2_06/bin sh ./LimeWireLinux.bin

Note: the bin file of java may difer in your machine if you gave the instalation another path to install java. So just find the bin folder, type $ pwd and copy the entire path =$PATH:your_path

Leveecius December 6th, 2006 11:15 AM

Hey guys, I get this error when I'm trying to install Limwire. I already have Java installed and working so I'm hoping I can get Limewire figured out. I just rebuilt my computer and it was working right before I rebuilt it but here's what I get.

Downloaded Limewire rpm use the code and get this:

error: open of such rpm failed. No such directory or file.

So I download the latest Beta version. Use the code again and get this:

error: can't create transaction lock on /var/lib/rpm/__db.000

Any ideas??

mikevacc August 2nd, 2007 02:15 AM

java
 
Hello there, First off i'd like to thank you for a wonderful guide, your time is highly appreciated :)

However, I am encountering a problem..

Limewire loads fine, however once it gets past offering to sell me Pro and the 'tip o the day', the screen stays grey and reads

'Limewire: Enabling open information Sharing'

When running through a terminal, I am getting this

Starting LimeWire...
Java exec found in PATH. Verifying...
Suitable java version found [java = 1.5.0_11]
Configuring environment...
Loading LimeWire:
/usr/share/themes/Clearlooks/gtk-2.0/gtkrc:34: error: lexical error or unexpected token, expected valid token

************************************************** ****************
Something went wrong with LimeWire.
Maybe you're using the wrong version of Java?
(LimeWire is tested against and works best with with Sun's JRE, Java 1.5+)
The version of Java in your PATH is:
java version "1.5.0_11"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_11-b03)
Java HotSpot(TM) Client VM (build 1.5.0_11-b03, mixed mode, sharing)



Im not sure if the path is incorrect, or what.. I cannot really tell what is going on here, It isnt very sensical that it asks me to use 1.5 java, and then displays that I have 1.5 java.. Oh the wonders of computers :).

I am running Ubuntu(Fesity)

Thanks so much for your help

yegnal October 27th, 2008 04:06 AM

Mandriva
 
I'm running in Mandriva 2009 and have Java 1.6.0 installed. There is an executable shortcut to Java located in usr/bin called usr/bin/java that points to usr/alternatives/java that in turn points to:/usr/lib/jvm/jre-1.6.0-openjdk/bin/java

The problem I have is that I downloaded the LimeWire zip and used unzip without any options to decompress. The folder that was created doesn't respond to ./LimeWire.bin or sh ./LimeWire.bin. I was wondering what else may be required in order for me to install or if I'm missing something....

Did I possibly unzip improperly, I know that the LimeWire folder has many .jar files which I believe are compressed files of some sort.....


All times are GMT -7. The time now is 10:20 AM.

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.