LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 11-25-2006, 04:30 PM   #1
mandrakeman
LQ Newbie
 
Registered: Nov 2006
Posts: 29

Rep: Reputation: 15
Limewire problems


I downloaded the rpm for limewire but once I launched it I got this error.

Some requested packages cannot be installed
LimeWire-free-4.12.6-0.i386 (Due to unsatisfied j2re [>= 1.4.1])


Help please!

Thanks.

I am using Mandriva 10.1
 
Old 11-25-2006, 05:02 PM   #2
Tinkster
Moderator
 
Registered: Apr 2002
Location: earth
Distribution: slackware by choice, others too :} ... android.
Posts: 23,067
Blog Entries: 11

Rep: Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928
And which jre have you got installed? And the limewire-rpm you're
trying to install - is it MDK specific?


Cheers,
Tink
 
Old 11-25-2006, 07:45 PM   #3
jiml8
Senior Member
 
Registered: Sep 2003
Posts: 3,171

Rep: Reputation: 116Reputation: 116
That is actually mandrake 10.1, which predates the merger that led to Mandriva.

Go to www.sun.com and download the latest jre, which is jre-1.5.0.9 or some such, and install it using the Sun installer. Then, when you try to install limewire, if the package manager objects use the --allow-force option.
 
Old 11-25-2006, 09:19 PM   #4
mandrakeman
LQ Newbie
 
Registered: Nov 2006
Posts: 29

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by Tinkster
And which jre have you got installed? And the limewire-rpm you're
trying to install - is it MDK specific?


Cheers,
Tink
Not sure how I can tell if it is MDK, I downloaded it off the limewire web site. Nor am I sure how to tell what jre I have installed.
 
Old 11-25-2006, 09:54 PM   #5
mandrakeman
LQ Newbie
 
Registered: Nov 2006
Posts: 29

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by jiml8
That is actually mandrake 10.1, which predates the merger that led to Mandriva.

Go to www.sun.com and download the latest jre, which is jre-1.5.0.9 or some such, and install it using the Sun installer. Then, when you try to install limewire, if the package manager objects use the --allow-force option.
I downloaded the newest jre but being that I am so new to linux I have no idea how to install this thing.

It is frustrating to say the least...
 
Old 11-25-2006, 10:06 PM   #6
Hitboxx
Senior Member
 
Registered: Mar 2006
Location: India
Distribution: Fedora
Posts: 1,562
Blog Entries: 3

Rep: Reputation: 68
What is the name of the file you downloaded?

Please provide full information, how are we supposed to help you without some info mate?

It is frustrating to say the least...

PS : Have you read the instructions http://www.java.com/en/download/linux_manual.jsp

Last edited by Hitboxx; 11-25-2006 at 10:10 PM.
 
Old 11-26-2006, 11:47 AM   #7
jiml8
Senior Member
 
Registered: Sep 2003
Posts: 3,171

Rep: Reputation: 116Reputation: 116
Quote:
Originally Posted by mandrakeman
I downloaded the newest jre but being that I am so new to linux I have no idea how to install this thing.

It is frustrating to say the least...
There are two possible files you could have downloaded; one is an rpm file and the other is not (also, of course, there are 32 bit and 64 bit versions; presumably you know which you need). You can auto-install the rpm file. You have to manually install the other file. So I will assume you downloaded the rpm file and if you didn't I suggest you go back to sun.com and get it.

Open a shell window, then cd to the directory where you put the download.

When you get there, change to root. You do this by entering the su command. After you enter the su command, you will be prompted for your root password. Enter it.

After entering it, in that command line window you are root and have full access to the system.

You have to set the self extractor to be executable by the system; when you download it it won't have this right. To do this, enter this command line:

chmod 755 jre

After you enter that much, hit the Tab key, and the command line will autocomplete with the complete name of the jre package you have downloaded (it will end in .bin). Then you simply hit enter.

Now you invoke the self-extractor/installer by typing in this line:

./jre

and once again follow up with the Tab key, then hit enter. This will cause the executable to run and do what it does, which is unpack something that is stored in it.

What happens next depends on what package you downloaded. If you downloaded the rpm.bin, you then type in this line:

urpmi jre

and hit tab. You now get autocomplete of the line as far as possible, but there are two possible files which will be presented to you (the .bin file you downloaded and the .rpm file it unpacked) and the autocomplete will stop at the point where one of these files must be chosen, which you do by entering the correct next letter of the filename. Choose the one that ends in .rpm (which, I believe, will be already completely filled out on the command line, so all you have to do is hit "enter"). At this point, the jre package will be installed for you.
 
Old 11-26-2006, 01:16 PM   #8
mandrakeman
LQ Newbie
 
Registered: Nov 2006
Posts: 29

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by shrikant.odugoudar
What is the name of the file you downloaded?

Please provide full information, how are we supposed to help you without some info mate?

It is frustrating to say the least...

PS : Have you read the instructions http://www.java.com/en/download/linux_manual.jsp


What kind of info would you be needing? Like I said I am new to linux I have no idea what info you need.

I have seen a number of posts like this one, all you need to do is ask instead of being (slightly) condesending.

I had not seen that sight you linked....Thanks a bunch, that will help me out.

Thanks again for that link.
 
Old 11-26-2006, 01:25 PM   #9
mandrakeman
LQ Newbie
 
Registered: Nov 2006
Posts: 29

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by jiml8
There are two possible files you could have downloaded; one is an rpm file and the other is not (also, of course, there are 32 bit and 64 bit versions; presumably you know which you need). You can auto-install the rpm file. You have to manually install the other file. So I will assume you downloaded the rpm file and if you didn't I suggest you go back to sun.com and get it.

Open a shell window, then cd to the directory where you put the download.

When you get there, change to root. You do this by entering the su command. After you enter the su command, you will be prompted for your root password. Enter it.

After entering it, in that command line window you are root and have full access to the system.

You have to set the self extractor to be executable by the system; when you download it it won't have this right. To do this, enter this command line:

chmod 755 jre

After you enter that much, hit the Tab key, and the command line will autocomplete with the complete name of the jre package you have downloaded (it will end in .bin). Then you simply hit enter.

Now you invoke the self-extractor/installer by typing in this line:

./jre

and once again follow up with the Tab key, then hit enter. This will cause the executable to run and do what it does, which is unpack something that is stored in it.

What happens next depends on what package you downloaded. If you downloaded the rpm.bin, you then type in this line:

urpmi jre

and hit tab. You now get autocomplete of the line as far as possible, but there are two possible files which will be presented to you (the .bin file you downloaded and the .rpm file it unpacked) and the autocomplete will stop at the point where one of these files must be chosen, which you do by entering the correct next letter of the filename. Choose the one that ends in .rpm (which, I believe, will be already completely filled out on the command line, so all you have to do is hit "enter"). At this point, the jre package will be installed for you.

AWSOME! I will follow your instructions.
 
Old 11-26-2006, 01:31 PM   #10
mandrakeman
LQ Newbie
 
Registered: Nov 2006
Posts: 29

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by jiml8
There are two possible files you could have downloaded; one is an rpm file and the other is not (also, of course, there are 32 bit and 64 bit versions; presumably you know which you need). You can auto-install the rpm file. You have to manually install the other file. So I will assume you downloaded the rpm file and if you didn't I suggest you go back to sun.com and get it.

Open a shell window, then cd to the directory where you put the download.

When you get there, change to root. You do this by entering the su command. After you enter the su command, you will be prompted for your root password. Enter it.

After entering it, in that command line window you are root and have full access to the system.

You have to set the self extractor to be executable by the system; when you download it it won't have this right. To do this, enter this command line:

chmod 755 jre

After you enter that much, hit the Tab key, and the command line will autocomplete with the complete name of the jre package you have downloaded (it will end in .bin). Then you simply hit enter.

Now you invoke the self-extractor/installer by typing in this line:

./jre

and once again follow up with the Tab key, then hit enter. This will cause the executable to run and do what it does, which is unpack something that is stored in it.

What happens next depends on what package you downloaded. If you downloaded the rpm.bin, you then type in this line:

urpmi jre

and hit tab. You now get autocomplete of the line as far as possible, but there are two possible files which will be presented to you (the .bin file you downloaded and the .rpm file it unpacked) and the autocomplete will stop at the point where one of these files must be chosen, which you do by entering the correct next letter of the filename. Choose the one that ends in .rpm (which, I believe, will be already completely filled out on the command line, so all you have to do is hit "enter"). At this point, the jre package will be installed for you.

Says it was installed.

Thanks so much for your help and I am learning linux.

Thanks again.

P.S
Limewire installed perfectly!

Last edited by mandrakeman; 11-26-2006 at 01:34 PM.
 
  


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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Problems installing LimeWire darkervisions Linux - Software 23 12-25-2005 03:00 AM
Limewire Problems... Sabriel Dyrim Linux - Software 1 11-24-2005 12:14 AM
Limewire install problems redhatman Linux - Newbie 1 08-29-2004 12:36 AM
Problems Installing Limewire macaldwell Linux - Software 6 06-01-2004 10:54 PM
Limewire install problems? Viper168 Linux - Software 2 11-18-2003 04:18 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 07:49 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration