Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save payneio/2312757 to your computer and use it in GitHub Desktop.
Save payneio/2312757 to your computer and use it in GitHub Desktop.
Installing eclipse-java-indigo on Ubuntu
sudo -s
cd /opt
wget http://download.springsource.com/release/ECLIPSE/indigo/SR2/eclipse-java-indigo-SR2-linux-gtk-x86_64.tar.gz
tar -xzf eclipse<tab>
rm eclipse-java-<tab>
chown -R root:root eclipse
chmod -R +r eclipse
chmod +x `sudo find eclipse -type d`
touch /usr/bin/eclipse
chmod 755 /usr/bin/eclipse
vim /usr/bin/eclipse
#!/bin/sh
export ECLIPSE_HOME="/opt/eclipse"
$ECLIPSE_HOME/eclipse $*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment