Results 1 to 4 of 4
So, I'm new to linux, and currently I'm attempting to install java via a binary file, jre-6u17-linux-i586.bin, though when i type out the chmod x+ before it in the terminal, ...
- 01-13-2010 #1Just Joined!
- Join Date
- Jan 2010
- Posts
- 2
[SOLVED] Terminal troubles.
So, I'm new to linux, and currently I'm attempting to install java via a binary file, jre-6u17-linux-i586.bin, though when i type out the chmod x+ before it in the terminal, it gives me an error saying "no such file or directory". I have tried as many different methods as i could think of, scoured at least 15 pages of google to no avail, and have nearly resorted to spending my life savings on hiring Nasa to send my computer into the nearest singularity, at which time I would cry with relief knowing that the machine and operating system that frustrated me so would soon be passing the event horizon, never to be seen again.
Help, please?
- 01-13-2010 #2
Hello and Welcome.
Call NASA and tell them stand down, we have things under control here.
Linux is case sensitive, so keep this in mind at all times. Lets say you downloaded the jre-6u17-linux-i586.bin to /home/GloomCircuit/Desktop, the first thing you need to do is change directory with the "cd" command.
Now verify the file is present with the "ls" commandCode:cd /home/GloomCircuit/Desktop
You should see a listing of all the files in this directory...hopefully jre-6u17-linux-i586.bin is one of them.Code:ls
Now when you issue the chmod command, do it like this.
Press the tab button one time and it should auto complete the filename for you. If this doesn't work, then it probably means you are not in the right directory where you downloaded the file to.Code:chmod +x jre-
I do not respond to private messages asking for Linux help, Please keep it on the forums only.
All new users please read this.** Forum FAQS. ** Adopt an unanswered post.
- 01-13-2010 #3
Welcome to LF!!!
Are you sure the file is in correct path?
First try using ls command
Does this give you the file details?ls -l /YOURPATH/jre-6u17-linux-i586.bin
Then use chmod command
ps: Most linux distro comes with java by default too. You can verify it by runningchmod +x /YOURPATH/jre-6u17-linux-i586.bin
a command like
MikeTbob, you beat me to it !!!java- Lakshmipathi.G
-------------------
FOSS India Award winning ext3fs Undelete tool and tutorials www.giis.co.in
First they criticize you,Then they laugh at you,Then they fight with you,Then you win. - M.K.Gandhi
-------------------
- 01-13-2010 #4Just Joined!
- Join Date
- Jan 2010
- Posts
- 2
Thanks Mike! Nice straightforward explanation =)


