LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Desktop
User Name
Password
Linux - Desktop This forum is for the discussion of all Linux Software used in a desktop context.

Notices


Reply
  Search this Thread
Old 09-23-2007, 10:13 PM   #1
gundumfx
Member
 
Registered: Jul 2007
Location: Linux( Fedora core 7 Admin)
Distribution: fedora core 7
Posts: 148

Rep: Reputation: 15
Exclamation in fedora core 7 i have a problem with frostwire PLEASE HEL


in fedora core 7 i have a problem with frostwire PLEASE HELP

hey everybody i am a fedora core 7 user. An after i downloaded frostwire an i go to internet in my aplacation i click frostwire an frost wire does not come so i go to terminal an type is frostwire an this is what i got a message from there

[gundumfx@localhost ~]$ frostwire
Starting FrostWire...
Java exec found in PATH. Verifying...
OOPS, you don't seem to have a valid JRE. FrostWire works best with Sun JRE available at http://www.java.com
OOPS, unable to locate java exec in /usr/lib/ hierarchy
You need to upgrade to JRE 1.5.x or newer from http://www.java.com
ls: cannot access /usr/java/j*: No such file or directory
OOPS, unable to locate java exec in /usr/java/ hierarchy
You need to upgrade to JRE 1.5.x or newer from http://www.java.com
ls: cannot access /opt/j*: No such file or directory
OOPS, unable to locate java exec in /opt/ hierarchy
You need to upgrade to JRE 1.5.x or newer from http://www.java.com
[gundumfx@localhost ~]$

so what can i do now ??
 
Old 09-24-2007, 05:45 AM   #2
jdogpc
Member
 
Registered: Jul 2005
Location: Mafra, PT
Distribution: Fedora Core
Posts: 90

Rep: Reputation: 15
Java compatibility

Hi,

please check this thread as I think it might have the answer you need for your problem

http://www.linuxquestions.org/questi...highlight=java

browse throu post #9

Hope it helps,

JDogPC
 
Old 09-24-2007, 08:19 AM   #3
SkyEye
Member
 
Registered: Sep 2005
Location: Sri Lanka
Distribution: Fedora (workstations), CentOS (servers), Arch, Mint, Ubuntu, and a few more.
Posts: 441

Rep: Reputation: 40
Quote:
Originally Posted by jdogpc View Post
Hi,

please check this thread as I think it might have the answer you need for your problem

http://www.linuxquestions.org/questi...highlight=java

browse throu post #9

Hope it helps,

JDogPC
Looks like he needs to install a Java runtime (JRE), and yes, the link you give provides instructions on that.
 
Old 09-24-2007, 02:10 PM   #4
gundumfx
Member
 
Registered: Jul 2007
Location: Linux( Fedora core 7 Admin)
Distribution: fedora core 7
Posts: 148

Original Poster
Rep: Reputation: 15
Exclamation

Quote:
Originally Posted by jdogpc View Post
Hi,

please check this thread as I think it might have the answer you need for your problem

http://www.linuxquestions.org/questi...highlight=java

browse throu post #9

Hope it helps,

JDogPC
well it still does not help because i am runnign fedora core 7 on my computer an that thread it is for fc4 fedora core 4
so if you guys do me a faver that can you guys read that thread again for me so if you find anything i maybe did not get you can help me .
because iread it a several times an i did not het it so please can you hlep
 
Old 09-24-2007, 04:02 PM   #5
SkyEye
Member
 
Registered: Sep 2005
Location: Sri Lanka
Distribution: Fedora (workstations), CentOS (servers), Arch, Mint, Ubuntu, and a few more.
Posts: 441

Rep: Reputation: 40
Exclamation How to install a JRE manually in Fedora 7

It looks like what you need is a little help on how to install the Sun JRE on Fedora 7. Here's something I know works. This is the way to download the JRE and extract it and set it up so that FrostWire picks it up. I have done this for a friend a few days ago (not for the 1st time though), so I know it works.

Don't get put off by the descriptive answer, I'm going to submit it to Linux Answers section. That's why it seems so long

(If you don't have sudo configured you'll have to either use 'su' or login as root to use the commands I have provided with 'sudo' at the beginning)

1. First download the JRE from Sun. http://java.sun.com/javase/downloads/index.jsp JRE 6 Update 2 is the latest stable release as of this writing. You can get the Linux self extracting file (.bin) or the RPM archive (-rpm.bin) file.

2. After you complete your download, go to the directory you have it on disk. Eg: $ cd ~/gundumfx/Desktop/ if you have it on your desktop

3. Change the permissions so that you can execute the file
Eg: $ chmod a+x ./jre-6u2-linux-i586.bin

4. Execute it Eg: $ ./jre-6u2-linux-i586.bin

5. You'll have to go through the Sun's license notice and accept it to use the JRE. After this the package will extract and you will have a directory Eg: jre1.6.0_02 if you downloaded the .bin file or you'll have a .rpm file if you downloaded the -rpm.bin file.

6. If you now have a .rpm file, you only have to enter the command
$ sudo rpm -Uvh jre-6u2-linux-i586.rpm

You are done. Contratz!

But if you downloaded the .bin in the first place, please proceed from step 7.

7. Move your new JRE directory where people can access
Eg: $ sudo mv ./jre1.6.0_02 /opt/

8. Add the path to the bin directory within your JRE directory, to your PATH. Use your preferred editor to edit the relevant configuration file to set the PATH. If you are going to add it to system wide PATH so anyone can get it, use /etc/bashrc. If you just want it for you edit your .bashrc (~/.bashrc)
Eg: $ sudo vi /etc/bashrc

9. Add the following lines after everything (replace /opt/jre1.6.0_02/bin with your JRE bin path)

PATH=/opt/jre1.6.0_02/bin:$PATH
export PATH

save (write to) the file and exit. Now, next time you log in, you'll have a Sun JRE ready for you. Congratz!

FrostWire will detect your new JRE and use it.

Last edited by SkyEye; 09-24-2007 at 04:50 PM. Reason: fixed a typo
 
Old 09-25-2007, 06:50 AM   #6
gundumfx
Member
 
Registered: Jul 2007
Location: Linux( Fedora core 7 Admin)
Distribution: fedora core 7
Posts: 148

Original Poster
Rep: Reputation: 15
Cool

Quote:
Originally Posted by SkyEye View Post
It looks like what you need is a little help on how to install the Sun JRE on Fedora 7. Here's something I know works. This is the way to download the JRE and extract it and set it up so that FrostWire picks it up. I have done this for a friend a few days ago (not for the 1st time though), so I know it works.

Don't get put off by the descriptive answer, I'm going to submit it to Linux Answers section. That's why it seems so long

(If you don't have sudo configured you'll have to either use 'su' or login as root to use the commands I have provided with 'sudo' at the beginning)

1. First download the JRE from Sun. http://java.sun.com/javase/downloads/index.jsp JRE 6 Update 2 is the latest stable release as of this writing. You can get the Linux self extracting file (.bin) or the RPM archive (-rpm.bin) file.

2. After you complete your download, go to the directory you have it on disk. Eg: $ cd ~/gundumfx/Desktop/ if you have it on your desktop

3. Change the permissions so that you can execute the file
Eg: $ chmod a+x ./jre-6u2-linux-i586.bin

4. Execute it Eg: $ ./jre-6u2-linux-i586.bin

5. You'll have to go through the Sun's license notice and accept it to use the JRE. After this the package will extract and you will have a directory Eg: jre1.6.0_02 if you downloaded the .bin file or you'll have a .rpm file if you downloaded the -rpm.bin file.

6. If you now have a .rpm file, you only have to enter the command
$ sudo rpm -Uvh jre-6u2-linux-i586.rpm

You are done. Contratz!

But if you downloaded the .bin in the first place, please proceed from step 7.

7. Move your new JRE directory where people can access
Eg: $ sudo mv ./jre1.6.0_02 /opt/

8. Add the path to the bin directory within your JRE directory, to your PATH. Use your preferred editor to edit the relevant configuration file to set the PATH. If you are going to add it to system wide PATH so anyone can get it, use /etc/bashrc. If you just want it for you edit your .bashrc (~/.bashrc)
Eg: $ sudo vi /etc/bashrc

9. Add the following lines after everything (replace /opt/jre1.6.0_02/bin with your JRE bin path)

PATH=/opt/jre1.6.0_02/bin:$PATH
export PATH

save (write to) the file and exit. Now, next time you log in, you'll have a Sun JRE ready for you. Congratz!

FrostWire will detect your new JRE and use it.
ok thanks for what you wrote me but i fixed my frostwire problem well http://www.freewebs.com/dnmouse/index.htm

an then i went to auto install an got number two from there an now my frostwire works plus i have limewire now.
 
  


Reply

Tags
bashrc, fedora, frostwire, java, jre, path



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
No Video bios modes for chosen depth in Fedora Core 6 in Fedora Core 6 bubus_world Fedora - Installation 3 10-20-2008 10:30 AM
Problem installing Frostwire(P2P) Blackened Linux - Software 1 07-04-2007 11:34 PM
Setup Fedora core 3 & Redhat 7.2 software development environment under Fedora core 5 powah Fedora 1 06-16-2006 10:25 AM
I just installed fedora core 2 final, need some hel wiht mouse linuxnoobie2004 Fedora 2 05-19-2004 06:08 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Desktop

All times are GMT -5. The time now is 04:42 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