I just downloaded the eclipse package from the eclipse website in zipped format. I unzipped it in my user directory and set 777 permissions, but double clicking the eclipse executable won't do anything. I tried running the executable file through terminal, but it shows the error:
bash: ./eclipse: No such file or directory
Then I installed eclipse through Ubuntu software center, which runs successfully. Just the downloaded version doesn't run.
I have installed OpenJDK in Ubuntu 10.10. Can anyone please tell what is wrong with my Eclipse?
ls
in the path your are, if you see the eclipse there, trychmod +x eclipse
and./eclipse
, there also might be something wrong with the java version of your system tryjava --version
and paste the output. – topless Oct 10 '11 at 10:47java --version gave the following:- "Could not create the Java virtual machine."
However, 'java -version' gave this:- "java version "1.6.0_20" OpenJDK Runtime Environment (IcedTea6 1.9) (6b20-1.9-0ubuntu1) OpenJDK 64-Bit Server VM (build 17.0-b16, mixed mode)". I'm running OpenJDK.
– Sparky Oct 10 '11 at 11:08