Categories: UbuntuUbuntu 14.04

How to install eclipse in ubuntu 14.04

Eclipse is a open-source development environment used to develop applications . it supports various programming languages and can be installed in all Operating systems (Windows , Linux, Mac)
In this article we can see about installing eclipse in ubuntu 14.04 Manually.

Install eclipse in ubuntu 14.04 (Latest version)

Step 1 » Update repostories.
sudo apt-get update
Step 2 » Install Java by the below command.
sudo apt-get install openjdk-7-jdk
Step 3 » Download latest eclipse from here ( Download Eclipse )
Step 4 » Move the downloaded package to /opt directory.
sudo mv Downloads/eclipse-standard-kepler-SR2-linux-gtk-x86_64.tar.gz /opt/
Step 5 » Unzip the downloaded file.
cd /opt
sudo tar -xvf eclipse-standard-kepler-SR2-linux-gtk-x86_64.tar.gz
Step 6 » Create a new file eclipse.desktop in /usr/share/applications/ and add the below code .

[Desktop Entry]
Name=Eclipse
Type=Application
Exec=/opt/eclipse/eclipse
Terminal=false
Icon=/opt/eclipse/icon.xpm
Comment=Integrated Development Environment
NoDisplay=false
Categories=Development;IDE;
Name[en]=eclipse.desktop

Step 7 » Now install that desktop file using the below command.
sudo desktop-file-install /usr/share/applications/eclipse.desktop
Step 8 » Create a link file using the below command to open eclipse in command mode.
sudo ln -s /opt/eclipse/eclipse /usr/local/bin/
That’s it , Now you can launch eclipse.

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