LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   How do i install? (https://www.linuxquestions.org/questions/linux-newbie-8/how-do-i-install-259885/)

FireInTheDark 11-27-2004 12:39 PM

How do i install?
 
i'm trying to install java on my Manrake 10.0 official, i think it is a .bin file
How do i install this. i tryed with tar xzvf but that didnt work.

mugstar 11-27-2004 01:21 PM

try
Code:

sh name.of.file
or
Code:

./name.of.file
once you've done
Code:

cd name.of.directory.the.file.is.in

Boby 11-27-2004 02:02 PM

Code:

su
Password:
chmod +x j2re-1_4_2_<version>-linux-i586.bin
cd /path/to/java/bin/file/
./j2re-1_4_2_<version>-linux-i586.bin

This will do the following:
-become root;
-set execute permissions on the binary file;
-go to the directory where the binary file is;
-run the binary installer.

Check out the installation instructions from the Java homepage:
Java 2 Runtime Environment
Java 2 SDK

Good luck!
Boby


All times are GMT -5. The time now is 08:03 PM.