How To Install Eclipse Luna on CentOS 7

Eclipse is an open source and free multi-language and multi-platform (Windows , Linux and Mac) software development program that used to build JAVA based web applications. It is written in Java program and can be used to develop Java based applications and other various plugins, including languages like C, C++, PHP, Perl, Python, Ruby and Rails framework.

This article assumes you have at least basic knowledge of linux, know how to use the shell, and most importantly, you host your site on your own VPS. The installation is quite simple. We will show you through the step by step installation Eclipse on CentOS 7.

Step 1. First, Install Java required packages.

 yum install java

Check if java installed:

 java -version

Step 2. Download Eclipse Luna.

Download latest eclipse package. This guide uses Eclipse IDE for Java Developers version. Another popular versions are Eclipse IDE for Java EE Developers and Eclipse for PHP Developers. Select also 32-bit or 64-bit version depending on your system.

Extract Eclipse package (example /opt/):

 tar -zxvf eclipse-java-luna-SR1-linux-gtk-x86_64.tar.gz -C /opt

Make symbolic link to bin directory:

 ln -s /opt/eclipse/eclipse /usr/bin/eclipse

Step 3. Create Gnome desktop launcher.

 ##nano /usr/share/applications/eclipse.desktop

Add the following lines of code it, save and close the file:

[Desktop Entry]
Encoding=UTF-8
Name=Eclipse 4.4.1
Comment=Eclipse Luna
Exec=/usr/bin/eclipse
Icon=/opt/eclipse/icon.xpm
Categories=Application;Development;Java;IDE
Version=1.0
Type=Application
Terminal=0

Step 4. Start Eclipse.

From Desktop terminal run the following command to launch Eclipse:

 eclipse

From Desktop menu Gnome 3 Eclipse 4.4.1:

CentOS-7-Eclipse-4.4-Luna-Gnome

Congratulation’s! You have successfully installed Eclipse. Thanks for using this tutorial for installing Eclipse Luna on CentOS 7 system. For additional help or useful information, we recommend you to check the official Eclipse web site.

You Might Also Like:  How To Install Eclipse Luna on Ubuntu 14.04

Leave a Reply