How to install eclipse on Linux mint 15 – manually

Eclipse :

Eclipse is open source software used to develope application. it supports various programming languages like C/C++, PHP, JavaScript, Perl, Python, Ruby.
This article explains the installation of eclipse on linux mint 15 manually . Installation using software manager is easy but you will not get latest version . just follow th steps to install eclipse manually.

Install eclipse on linux mint 15

Step 1 » Install java JDK before installing eclipse.
krizna@leela:~$ sudo apt-get install openjdk-7-jdk
Step 2 » Download the latest eclipse packages from http://www.eclipse.org/downloads/?osType=linux.
Step 3 » Now after downloading move the downloaded package to /opt/ directory.
krizna@leela ~/Downloads $ sudo mv eclipse-jee-kepler-R-linux-gtk.tar.gz /opt/
Step 4 » Untar the file .
krizna@leela:~$ cd /opt
krizna@leela:/opt $ sudo tar -xvf eclipse-jee-kepler-R-linux-gtk.tar.gz
Step 5 » Modify the folder permissions.
krizna@leela:/opt $ sudo chown -R root:root eclipse
krizna@leela:/opt $ sudo chmod -R +r eclipse
Step 7 » Now Copy icon.xmp file to pixmaps folder as eclipse.xpm
krizna@leela:/opt $ sudo cp eclipse/icon.xpm /usr/share/pixmaps/eclipse.xpm
Step 8 » Create a new file called eclipse.desktop in /usr/share/applications/ and add these lines .

[Desktop Entry]
Encoding=UTF-8
Name=Eclipse
Comment=Eclipse IDE
Exec=/opt/eclipse/eclipse
Icon=/usr/share/pixmaps/eclipse.xpm
Terminal=false
Type=Application
Categories=GNOME;Application;Development;
StartupNotify=true

That’s it
Step 9 » To launch eclipse Goto Menu -> Programming -> Eclipse.


Goodluck

Disqus Comments Loading...
Share
Published by
krizna

Recent Posts

How to install Visual Studio Code on ubuntu 20.04

Visual Studio Code is a popular code editor which is lightweight and cross platform application.…

4 years ago

How to install MySQL workbench on ubuntu 20.04

MySQL workbench is a GUI tool for managing MySQL database system. It is used by…

4 years ago

How to install Android Studio on ubuntu 20.04

Android Studio is a popular development software used especially for developing android applications. It is…

4 years ago

How to install google chrome on ubuntu 20.04

Google chrome is a most popular web browser developed by google. It was developed to…

4 years ago

How to install Zoom on ubuntu 20.04

Zoom is a popular video conferencing software. It is commonly used for conducting online meetings,…

4 years ago

How to install TeamViewer on ubuntu 20.04

TeamViewer is a popular application for desktop sharing and remote control. It is available for…

4 years ago