Q. How do I install Eclipse integrated development environment and write first program under Ubuntu Linux Eclipse IDE?
A. Eclipse is free and open source integrated development environment (IDE) software. You need to install Java JDK and JRE before installing Eclipse.
Install Sun JDK and JRE
Open terminal and type the following commands to install Sun Java JDK and JRE:
$ sudo apt-get install sun-java6-bin sun-java6-jre sun-java6-jdk
$ sudo vi /etc/jvm
Add following line at the top:
/usr/lib/jvm/java-6-sun
Set up environment:
$ echo 'export JAVA_HOME=/usr/lib/jvm/java-6-sun' >> ~/.bash_profile
$ echo 'export PATH=$PATH:$JAVA_HOME/bin' >> ~/.bash_profile
$ . ~/.bash_profile
Make sure you see correct JAVA version:
$ java -version
Sample output:
java version "1.6.0_06" Java(TM) SE Runtime Environment (build 1.6.0_06-b02) Java HotSpot(TM) Server VM (build 10.0-b22, mixed mode)
Install Eclipse
Type the following command to install extensible Tool Platform, Java IDE, Java Development Tools plug-ins for Eclipse:
$ sudo apt-get install eclipse eclipse-jdt
How do I start eclipse?
Click on Applications > Programming > Eclipse
OR type the following command at shell prompt:
$ eclipse &
You should see an eclipse splash screen followed by workspace launcher:
Your first java program using Eclipse
Click Ok to load IDE. Close welcome screen. Click on Windows > Open perspective > Select Java .
Step # 1: Create a project
You need to create a project to put all .java and related project files. Click on File > New > Project > Select Java Project
Click Next > Type Project name "HelloWorld" > Click on Finish:
Step # 3: Create a new class
Now you need add a new class called HelloWorld. Click on File > New > Class > Set class name to "HelloWorld" > Select the checkbox to create the main() method > click Finish button:
Step # 3: Type the code
Type the following code inside main() method:
System.out.println("Hello world!\n");
Press CTRL + S to save program (or visit File > Save option).
Step # 4: Run your first java application
To run your program Select HelloWorld.java from left panel. Click on Run > Run As > Java Application :
The Console view should appear at the bottom of the IDE to display the "Hello, world!" output.
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop



















{ 15 comments… read them below or add one }
I’ve always use the following to change default java versions:
[code]
update-java-alternatives --list
sudo update-java-alternatives --set
[/code]
source: http://bit.ly/3Oa2uF
this is great! im new in ubuntu but it has a lot of kind hearted people that shares their knowledge…. hope i can contribute soon….
keep up the good work guyz…
Hi,
1) May I know what is this for :
$ sudo vi /etc/jvm
Add following line at the top:
/usr/lib/jvm/java-6-sun
I don’t have the jvm file under /etc/.
2) After starting my ecilipse, I tried to create a class, but all contents below the question “Which method stub Would you like to create”in the graphic dialog is gone. I can’t select one method stub.
3) After setting the PATH variable, I can start eclipse from anywhere, but if I click on the eclipse.exe on the file browser, an error message will show reading “Can’t find Java Virtual Machine…..”
My eclipse is v 3.4.2 Ganymede
Java jdk is jdk1.6.0_13
Your help is much appreciated!
George
You need to use latest sun-java6-jdk package. Did you installed sun-java6-jdk?
Yes I did.
does this eclipse can be dev web app?
Thanks for that. It realy helps me.
Thank you!! this was useful.
thanks.it was useful
thanks.
Thanks…
how to install birt in eclipse for
linux ubuntu
I have followed most of your suggestions.
I have Eclipse 3.5.2 installed as myself on Ubantou linkx 2.6.32-40
I don’t have a ~/.bash_profile but put that in ~/.profile
I don’t seem to have a Java profile. How do I enable that?
Was very helpful.. Thanks a lot.
Thanks dude, this really helped :-)