Install Eclipse on Ubuntu

5:29 PM

Install Eclipse on Ubuntu - I have a mobile application project using IBM Worklight. A tools like phonegap (maybe) so we can develop an application using html5 and can use for many mobile operating system . So i decided to use Eclipse for IDE, because eclipse is an application from IBM too. I think it's compatible for this project.

Download eclipse 4.2.2 for working with IBM Worklight, because this earlier version doesn't supported. I know it from eclipse marketplace. On this post i will share how to install eclipse on Ubuntu manually, because if you are using Ubuntu Software Center you just get 3.8 version. After download eclipse 4.2.2, follow this step to install

Install Eclipse on Ubuntu
  1. Make sure java has been installed in your Ubuntu
     java -version
  2. Extract downloaded file. After that, move eclipse folder into /opt/ folder. i move eclipse folder from home with code below
     sudo mv eclipse /opt/ 

    You must using sudo, because you can't copy without root permission into /opt/
  3. Make a desktop file to launch eclipse
    sudo gedit eclipse.dekstop
  4. Write the code below
    [Desktop Entry]
    Name=Eclipse 
    Type=Application
    Exec=eclipse
    Terminal=false
    Icon=eclipse
    Comment=Integrated Development Environment
    NoDisplay=false
    Categories=Development;IDE;
    Name[en]=Eclipse
  5. Install on unity with running this command on terminal
    desktop-file-install eclipse.dekstop
  6. Make a link, so you can run in like other application
    cd /usr/local/bin
    ln -s /opt/eclipse/eclipse
Baca dalam bahasa Indonesia: Install Eclipse di Ubuntu

You Might Also Like

0 comments

Popular Posts

Subscribe