LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 09-10-2004, 07:41 PM   #16
egag
Senior Member
 
Registered: Jul 2004
Location: Netherlands
Distribution: Slackware
Posts: 2,721

Rep: Reputation: 53

i mean, if you type it at a prompt, and hit return, there appears
a line with some text.
that's called output.

egag
 
Old 09-10-2004, 09:03 PM   #17
Linux24
Member
 
Registered: Aug 2004
Distribution: Mandrake 10.1
Posts: 204

Rep: Reputation: 30
Quote:
Originally posted by NoS Sr50
The output? what do you mean
What you typed at the command line looks wrong.

[root@localhost robert]# ln -s /usr/java/jr2re1.4.2_05/bin/java /usr/bin/java
[root@localhost robert]# ln -s /usr/java/jr2re1.4.2_05/bin/java/usr/bin/java

Why did you type the second line. Which did you type?

Enter this command

ls -l /usr/bin/ja*

and see what it says. If it shows a link to java, then you are OK. If not, you typed in the command wrong. The command is

ln -s target link
so in this case

ln -s /usr/java/jr2re1.4.2_05/bin/java /usr/bin/java

Is the command that would work. The other one is missing a space and tried to create an unnamed link to a file that does not exist - and therefore would not work.

Verify that the link worked.

When I type

ls -l /usr/bin/ja*

I get the following output (output is what the computer spits out in response to its processing of your input - if you don't know that - you should give up on linux now because it requires at least a minimal understanding of computing just to operate)

lrwxrwxrwx 1 root root 31 Sep 5 18:06 /usr/bin/java -> /usr/java/j2re1.4.2_05/bin/java*

That shows that I have a link to java in my /usr/bin directory, which is in my path.

I don't know how to say this kindly, but I think you would benefit from getting yourself a book on linux, reading it, and working the examples in it before you try installing virtual machines. You don't have to master vi, but you need the basics of how it works. You don't have to master shell scripting, but you do need to know things like

input -> processing -> output

and the difference between stderr and stdout, which are all in chapter one of every Linux and Unix book ever written.

It will make all of this a lot easier.
 
Old 09-11-2004, 03:36 AM   #18
NoS Sr50
Member
 
Registered: Sep 2004
Distribution: Mandrake 10.0 Download
Posts: 66

Original Poster
Rep: Reputation: 15
Code:
[root@localhost robert]# ls -l /usr/bin/ja*
lrwxrwxrwx  1 root root  8 Sep  5 21:08 /usr/bin/jade -> openjade*
lrwxrwxrwx  1 root root  3 Sep  5 21:10 /usr/bin/jadetex -> tex*
lrwxrwxrwx  1 root root 32 Sep 10 14:14 /usr/bin/java -> /usr/java/jr2re1.4.2_05/bin/java
[root@localhost robert]# 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 robert]#
Well it seems I do have a link but its not working
 
Old 09-11-2004, 10:00 AM   #19
Linux24
Member
 
Registered: Aug 2004
Distribution: Mandrake 10.1
Posts: 204

Rep: Reputation: 30
Looks like your symlink is missing the asterisk on the end that indicates that it is executable.

lrwxrwxrwx 1 root root 8 Sep 5 21:08 /usr/bin/jade -> openjade*
lrwxrwxrwx 1 root root 3 Sep 5 21:10 /usr/bin/jadetex -> tex*
lrwxrwxrwx 1 root root 32 Sep 10 14:14 /usr/bin/java -> /usr/java/jr2re1.4.2_05/bin/java

Mine says:

lrwxrwxrwx 1 root root 31 Sep 5 18:06 /usr/bin/java -> /usr/java/j2re1.4.2_05/bin/java*

Delete the symlink in /usr/bin and try again. Also, make sure that you have a java file in /usr/java/j2re1.4.2_05/bin/java

Lastly, I don't think you type sh at the prompt to run the LimeWire installer. Just made the installer executable and type ./file_name.bin and it runs.

If none of that works, try deleting the symlink again, and delete your java directory, download a new copy of java, and install it *again*.
 
Old 09-11-2004, 04:51 PM   #20
NoS Sr50
Member
 
Registered: Sep 2004
Distribution: Mandrake 10.0 Download
Posts: 66

Original Poster
Rep: Reputation: 15
Thanks, but you forgot to tell me how to delete symlinks
 
Old 09-11-2004, 07:01 PM   #21
Linux24
Member
 
Registered: Aug 2004
Distribution: Mandrake 10.1
Posts: 204

Rep: Reputation: 30
Quote:
Originally posted by NoS Sr50
Thanks, but you forgot to tell me how to delete symlinks



RTFM
 
Old 09-11-2004, 07:29 PM   #22
egag
Senior Member
 
Registered: Jul 2004
Location: Netherlands
Distribution: Slackware
Posts: 2,721

Rep: Reputation: 53
just use google, type "rtfm" and it will give you all the info...

egag
 
Old 09-11-2004, 08:15 PM   #23
NoS Sr50
Member
 
Registered: Sep 2004
Distribution: Mandrake 10.0 Download
Posts: 66

Original Poster
Rep: Reputation: 15
thanks for being helpfull
 
Old 09-11-2004, 09:47 PM   #24
Linux24
Member
 
Registered: Aug 2004
Distribution: Mandrake 10.1
Posts: 204

Rep: Reputation: 30
Quote:
Originally posted by NoS Sr50
thanks for being helpfull
Is this my wife posting under a pseudonym? She loves to sit down at the computer and insist that it be able to do what she needs without her having to learn a single thing about it or even touch her magnificent fingers to the unworthy keyboard. "I have to tell it to burn a music CD?!?" she frowns. "OUTRAGEOUS! I don't want to major in computer science, I just want the computer to do the stuff I need right now like a toaster."

Your last question, the one about deleting symlinks, is answered in the first twenty pages of even the worst book ever written about Linux. I believe everyone has an inherent responsibility to attempt to self-educate themselves using available resources before they can expect others to provide them with assistance. If it isn't worth an hour of your time, it isn't worth *any* of mine.

For example, before posting a question, it's nice to search for previous answers. This forums even include that function when you create a new post with a cute button to push. It's also nice to search the web for your answer before asking for clarification. And imnsho, it's nice if you buy a $20 book about Linux and learn the more rudimentary things so you don't ask people to waste time posting responses to questions like "what does 'log on' mean?" or the ever-popular "What is a command line?"

If you really don't even know how to delete files, do you really think you are ready to install java and limewire? I don't.



Get a nice book about Linux - like one of those big fat books like Linux Unleashed or Linux for Dummies and learn the most basic stuff. Otherwise you aren't going to understand the answers to your questions.
 
  


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
Cant Install Limewire wicho_the_one Fedora 7 07-17-2005 01:55 PM
Limewire Install AndrewZorn Linux - Software 5 04-06-2005 10:22 PM
LimeWire Install gmc49015 Linux - Newbie 2 02-03-2005 04:40 PM
[SOLVED] LIMEWIRE Install notres Linux - Software 3 12-25-2004 01:48 PM
How Do I Install LimeWire? Please Help! Shawn_230 Linux - Software 4 04-13-2003 03:41 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

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