Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse doesn't start in Ubuntu 14.04

I have a problem trying to launch Eclipse in Ubuntu 14.04. Splash picture pops up, then blinks, turns white - and nothing happens until kingdom come. I have tried Luna, Kepler and 3.8 (from Ubuntu repository). EE and SE editions - both the same. I have also tried to launch them with different (oracle) vm - 1.7 and 1.8. And yes, I have tried the -clean and simple workspace removal.

This is the only thing it says in console:

org.eclipse.m2e.logback.configuration: The org.eclipse.m2e.logback.configuration bundle was activated before the state location was initialized. Will retry after the state location is initialized.

Java VM works fine - I can launch (for example) IDEA or java\javac commands.

Any suggestions?

like image 760
miracle_the_V Avatar asked Jul 13 '14 19:07

miracle_the_V


2 Answers

The answer is already here, but it's in the comments. So I re-post it as answer: check your 2nd screen. Workspace dialogue may be there.

like image 96
miracle_the_V Avatar answered Sep 28 '22 20:09

miracle_the_V


Try this:

1) Remove .snap from:

.metadata\.plugins\org.eclipse.core.resources\.projects\<project>\.markers.snap

If you can't find it manually try this:

find /.metadata/.plugins/org.eclipse.core.resources/.projects -name "*.snap" -exec rm -f {} \;
like image 30
Rcordoval Avatar answered Sep 28 '22 18:09

Rcordoval