Gnutella Forums

Gnutella Forums (https://www.gnutellaforums.com/)
-   General Linux Support (https://www.gnutellaforums.com/general-linux-support/)
-   -   Linux Install (https://www.gnutellaforums.com/general-linux-support/2265-linux-install.html)

Unregistered July 8th, 2001 10:36 AM

Linux Install
 
How do I install LimeWire in Linux?

Tried sh ./LimeWireLinux.bin

Preparing to install...
The included VM could not be extracted. Please try to download
the installer again and make sure that you download using 'binary'
mode. Please do not attempt to install this currently downloaded copy.

Please Help Me!

gbildson July 8th, 2001 11:13 AM

Your linux system doesn't have the compress command installed. It is called something like ucompress or uncompress. Get that and it will work.

-greg

Unregistered July 8th, 2001 12:24 PM

Ucompress , Uncompress
 
Can't find any of these (ucompress, uncompress). Anyone who knows were to find them and how to install them?

Unregistered July 8th, 2001 01:16 PM

After I installed uncompress I get this message :
sh ./LimeWireLinux.bin

SIGSEGV received at bffff31c in /tmp/install.dir.5735/Linux/resource/jre/lib/linux/native_threads/libjava.so. Processing terminated
Writing stack trace to javacore6813.txt ... OK
./LimeWireLinux.bin: line 1: 6813 Segmenteringsfel /tmp/install.dir.5735/Linux/resource/jre/bin/jre -Djava.compiler= -noverify -cp "::/tmp/install.dir.5735/InstallerData:/tmp/install.dir.5735/InstallerData/installer.zip" com.zerog.lax.LAX "/tmp/install.dir.5735/temp.lax" /tmp/env.properties.5735

Unregistered July 8th, 2001 01:21 PM

I had the same problem, now I've got a new one...
 
I've got the LimeWireLinux 1.4 .bin in my home dir.
I use Mandrake Linux 8.0, so I popped the CD in and installed the ncompress rpm (easy to do, mandrake even has a GUI for these sorts of things now).

But now, every time I run the bin, I get a long error message, and occasionally my entire system will lock up (which is very unusual for Linux)

It goes like this:

[user@name dir]$ ./LimeWireLinux.bin
Preparing to install...
SIGSEGV received at bffff31c in /tmp/install.dir.1441/Linux/resource/jre/lib/linux/native_threads/libjava.so Processing terminated
Writing stack trace to javacore2519.txt ... OK
./LimeWireLinux.bin: line 1: 2519 Segmentation fault /tmp/install.dir.1441/Linux/resource/jre/bin/jre -Djava.compiler= -noverify -cp "::/tmp/install.dir.1441/InstallerData:/tmp/install.dir.1441/InstallerData/installer.zip" com.zerog.lax.LAX "/tmp/install.dir.1441/temp.lax" /tmp/env.properties.1441


Then I get either a new prompt, or my linux system crashes, neither of which is good.

gbildson July 8th, 2001 02:19 PM

I'm pretty sure that this is the problem with the new linux kernel. When they rolled the latest linux kernel out, older Java versions didn't work with it. I think that this one will:

http://java.sun.com/j2se/1.3/jre/download-linux.html

-greg

Unregistered July 8th, 2001 03:08 PM

That tends to bring up another problem...
 
I tried throwing up a java install of Limewire a few days ago, and in the process tried to d/l and install jre1.3 from Sun, but installing a new version of java such that the old one is replaced seems nightmarish due to the distro differences. The .bin will install fine wherever I tell it to, and will work from it's installed location, the problem is the o/s doesn't know that new version is there.

So, my question is, Sun displays a "Red Hat RPM" version, and I was tempted to download that as RPM's eliminate this problem. Don't RPM's essentially work no matter what distro you throw them on? Must I download the straight .bin install and tinker with environment variables until I replace the old java?

Unregistered July 8th, 2001 04:12 PM

update on the situation...
 
I downloaded jre 1.3 AGAIN... installed it AGAIN to /usr/local/jre1.3.1/ This time I noticed the "control panel" application it comes with, and found an option in there that could be set to point to the new version at the location I just installed.

No go, any 'java -version' command at a $ prompt gives the old version. I've no clue how to ensure that Linux knows there's a new version of Java installed, there is no HOWTO on this and Sun's website is completely inadequate (it doesn't tell you more than "execute the bin", well DUH).

What's needed are specific instructions as to how to replace one's old version of Java on various distributions. Does anyone have ANY idea how to do this? It's quite annoying to not be able to use software over such simple impasses.

gbildson July 8th, 2001 06:21 PM

If you want to ensure that any version of a command is accessed from the command line then you make sure that the path to it occurs first in your PATH environment variable.

You have some kind of .profile (.bash_profile, .login, .kshrc, or whatever) in your login directory where you could specify this. You may need to set JAVA_HOME as well. i.e.
JAVA_HOME=/usr/local/jre1.3.1
PATH=$JAVA_HOME/bin:$PATH
export PATH JAVA_HOME
This depends on what shell you are using - likely bash (man bash)

-greg

Unregistered July 8th, 2001 07:33 PM

Still not working
 
Greg, thanks for all the help. I managed to get the path updated, and the correct version number appears when I do a java -version...(thanks for the instruction on that too, always good to know where to go to manipulate environment variables) however I'm still getting that message above (the long one that was causing system lockups). I've tried it as root, as a user, from console/terminal, etc.. nothing seems to work.

Unregistered July 8th, 2001 09:05 PM

Hi, other Unregistered!
I've just found this post looking for help with my similar problems with Mandrake 8. I still can't get the .bin LimeWire to work, but thanks to the pointers on here I got the java version working.

I'm using Blackdown Java, not Sun, but the problem was still that Linux was looking in the wrong place for java.

'whereis java' at a terminal will probably display: 'java: /usr/bin/java'
If so, this fix should work for you. First find precisely where java is in your new java path - might be further down the path than /usr/local/jre1.3.1.
Delete /usr/bin/java and replace with a symbolic link pointing to your new java (ln -s /usr/local/jre1.3.1/somemorepathmaybe/java /usr/bin/java).

And that might well make 'java -classpath LimeWire.zip install' work.

Unregistered July 8th, 2001 10:06 PM

Thanks! That at least got it installed (java version)... although now while running it, it wont go any further than the LimeWire intro "window". It gets there and just hangs. Does it go through any initial configuration upon first running that could perhaps be failing?

----- Jeremy

Unregistered July 8th, 2001 10:24 PM

ok....got it working...
 
god that was annoying being stuck unable to install. It is working now,thank you all. I had to run it once as root (as it was installed as root) to get it working right.

Unregistered July 9th, 2001 09:21 AM

I can't get it to work.

Tried whereis java

java :

Downloaded j2re-1.3.1-FCS-linux-i386.tar.bz2

Installed it to /usr/local/j2re1.3.1

Added the lines to .bash_profile

Tried whereis java again :

java :

What am I doing wrong?

ryki7 July 9th, 2001 05:46 PM

similar problem but no response at all
 
I am having a very similar problem. When I attempt to install Limewire all I receive is the "Preparing to install.." message and then it sits and never gives any more messages and I have let it sit for an hour or two. Am I having the same problem or is something different?

I am running RH 7.1 and I have the latest version of the java runtime enviroment installed.

ryan

gbildson July 10th, 2001 02:01 AM

Can you run it with strace and let us know what system calls it is doing when it is not finishing?

-greg

kortaben July 10th, 2001 12:22 PM

Downloaded JRE1.3.1 from SUN
Now I got JAVA to work with the PATH...

But if I write sh LimeWireLinux.bin while in Root mode, the system hangs. But if I'm logged in as a user I get the error message.

SIGSEGV received at bffff31c in /tmp/install.dir.5735/Linux/resource/jre/lib/linux/native_threads/libjava.so. Processing terminated
Writing stack trace to javacore6813.txt ... OK
./LimeWireLinux.bin: line 1: 6813 Segmenteringsfel /tmp/install.dir.5735/Linux/resource/jre/bin/jre -Djava.compiler= -noverify -cp "::/tmp/install.dir.5735/InstallerData:/tmp/install.dir.5735/InstallerData/installer.zip" com.zerog.lax.LAX "/tmp/install.dir.5735/temp.lax" /tmp/env.properties.5735

BlkPoohba August 17th, 2001 09:43 PM

RedHat 7.1 install problems
 
I have d/l the latest version and i installed the jre2 and when i run sh runlime.sh it goes thru the setup and then the main program comes up and then it goes down. When I try to run it again i get the same thing each and every time.

Registered Monitor Dump:
PCMap lock: <unowned>
utf8 hash table: <unowned>
JNI pinning lock: <unowned>
JNI global reference lock: <unowned>
BinClass lock: <unowned>
Class linking lock: <unowned>
System class loader lock: <unowned>
Code rewrite lock: <unowned>
Heap lock: <unowned>
Monitor cache lock: owner "Thread-45" (0x8a57450) 1 entry
Thread queue lock: owner "Thread-45" (0x8a57450) 1 entry
Waiting to be notified:
"Thread-29" (0x8052cb8)
Monitor registry: owner "Thread-45" (0x8a57450) 1 entry

$ rpm -q jre
jre-1.3.1-fcs


All times are GMT -7. The time now is 03:24 PM.

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

Copyright © 2020 Gnutella Forums.
All Rights Reserved.