Darth Plagueis
Darth Plagueis

Reputation: 930

eclipse galileo not responding ubuntu 64-bit

I'm having a problem with eclipse galileo on ubuntu 64-bit system. when ever i open it the splash scree turns gray but keeps loading and then when eclipse opens it shows the secure storage password request and hangs. I dont know what could be wrong, it used to work fine before, if you have or had the same problem please tell me what to do

Upvotes: 5

Views: 3508

Answers (5)

Walt
Walt

Reputation: 83

This happens to me whenever I shutdown eclipse with the history tab open.

While not the best solution, to solve it I start eclipse with sudo. I let it finish loading, then select a different tab than history. I Shutdown eclipse, then I recursively change the owner of the files in .metadata back to my main user.

In case you need the command: (in my case I run this from /home/wally/workspace)

 sudo chown -R wally:wally .metadata

As far as I can tell, there's some race condition going on.

(also, it's likely that you won't use exactly "wally:wally" but "your username:your group)

Upvotes: 3

rhunwicks
rhunwicks

Reputation: 3278

I have had this happen on Galileo (3.5) and Helios (3.6).

If you delete .eclipse you will lose all software installed through the Help | Install New Software menu option.

It is enough to delete the file ~/.eclipse/org.eclipse.equinox.security/secure_storage

Upvotes: 9

armandino
armandino

Reputation: 18548

Try this:

export GDK_NATIVE_WINDOWS=true

then run eclipse from command line from the same terminal window.

Upvotes: 2

Suvir
Suvir

Reputation: 175

I would suggest removing openjdk from synaptic and install sun java. Once you do that , use "sudo update-java-alternatives --set java-6-sun" to use sun-java as the default JRE.

Eclipse used to work really slow for me, and this method worked. Maybe it helps you too.

Upvotes: 1

Alexey
Alexey

Reputation: 517

Try clean $HOME$/.eclipse directory.

Its better to just rename at first.

See what happens

Upvotes: 6

Related Questions