Aptana plugin crashes Eclipse

為{幸葍}努か 提交于 2019-12-05 21:05:10
fred

I found an emergency fix that allowed me to start using Eclipse again. It is very blunt and NOT the way you'd expect to deal with problems like this, alas, it seems at least my Eclipse is up and running again.

Because Eclipse crashed very shortly after having started up, it was impossible to uninstall the plugin that crashed it. What I did was the following:

  • Make sure Eclipse is not running.
  • Make a backup copy of the Eclipse folder.
  • Navigate to the folder in the terminal

  • Execute this command in terminal:

    find . -name *aptana* -exec rm -rf {} \;
    

Note that this works for me because I am the owner and have the necessary permissions to perform this operation in my Eclipse folder. If you are not the owner of the Eclipse folder, or if you lack some permissions, chances are you may have to insert sudo before the rest of the command in order for it to work.

This command will search the current folder and all subfolders for any files and folders that has the string aptana in their names, and delete all of them.

  • Execute

    find . -name *aptana*
    

in terminal to confirm that there is nothing left. There should be no results when running this command. If you get some results, then all aptana files and folders have still not been deleted.

  • Should the previous command leave no results, start Eclipse.

  • Go to Help/Install new software and then click What is already installed?

  • Select the Aptana plugin and press uninstall.

  • Restart Eclipse when prompted to do so.

Eclipse should now work just like before you installed Aptana. At least my Eclipse seems to do so.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!