- Download the Eclipse Helios. You can download any package you want. I downloaded the eclipse-jee-helios-linux-gtk.tar.gz
- Extract and copy it to the /opt directory
sudo tar -vxzf eclipse-SDK-3.7-linux-gtk-x86_64.tar.gz -C /opt cd /opt sudo chown -R root:root eclipse sudo chmod -R +r eclipse
- You can also change the root:root to user:user
- Create an executable
sudo touch /usr/bin/eclipse sudo chmod 755 /usr/bin/eclipse sudo gedit /usr/bin/eclipse
- Paste this to gedit and save
#!/bin/sh #export MOZILLA_FIVE_HOME="/usr/lib/mozilla/" export ECLIPSE_HOME="/opt/eclipse" $ECLIPSE_HOME/eclipse $*
- Create a shortcut
sudo gedit /usr/share/applications/eclipse.desktop
- Paste to gedit
[Desktop Entry] Encoding=UTF-8 Name=Eclipse Comment=Eclipse IDE Exec=eclipse Icon=/opt/eclipse/icon.xpm Terminal=false Type=Application Categories=GNOME;Application;Development; StartupNotify=true
- And launch Eclipse for the first time
sudo eclipse/eclipse -clean
Thursday, November 1, 2012
Manual Install Eclipse - Ubuntu
I'm tired of searching in the internet on how to manually install eclipse. I am not using the Ubuntu Software Center to download eclipse because I want the Eclipse Helios to be installed.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment