Out of Memory Problem with Eclipse in Ubuntu

Tuesday 6th May, 2008

If you are using al lot of Plugins in Elcipse (like WTP) eclipse may shutdown without error messages. In .log file you will find something like: "out of memory"

 So if you add the followin configuration in eclipse.ini file eclipse will run on ubuntu without problems

~$ cat eclipse33/eclipse.ini
-showsplash
org.eclipse.platform
-vmargs
-Xms512m
-Xmx512m
-XX:MaxPermSize=256m
-XX:PermSize=128m

 

 

Comments [0]