LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Programming (https://www.linuxquestions.org/questions/programming-9/)
-   -   java and eclipse (https://www.linuxquestions.org/questions/programming-9/java-and-eclipse-274605/)

eng_raar 01-06-2005 11:12 AM

java and eclipse
 
guys heeeeeeeeeelp

i need help in installing j2sdk and eclipse on linux

as for j2sdk i don't know where to set the path
as for eclipse i don't know how to install it

thx in advance and sorry for time

jlliagre 01-06-2005 12:15 PM

http://www.netbeans.org/ ?

Mohsen 01-06-2005 12:22 PM

no need to set any environment variable. Just install jdk, unzip eclipse, and run the executable file inside the eclipse root directory.

csfalcon 01-06-2005 12:34 PM

You can find the instructions for installing both Java SDK and Eclipse here:

http://www.csfalcon.com/wiki/csfalcon/JavaSDK
http://www.csfalcon.com/wiki/csfalcon/EclipseIDE

german 01-08-2005 05:20 PM

1) install JVM, there's about a million examples on this site alone of how to do this

2) unpack eclipse:

Code:

me@puter:/usr/local$ unzip ~/eclipse.zip
3) create a shell script to run it by putting this in /usr/bin/eclipse:

Code:

#!/bin/sh

export PATH=$PATH:/path/to/j2sdk1.4.2_04/bin;
/usr/local/eclipse/eclipse

4) make it executable
chmod +x /usr/bin/eclipse

now run it and eclipse should start

HTH

B.


All times are GMT -5. The time now is 12:56 AM.