Here's an excerpt from the log mentioned in the message:An error has occurred. See the log file /home/wittk/.eclipse/org.eclipse.platform_3.7.0_155965261
/configuration/1338578313816.log
java.lang.UnsatisfiedLinkError: Could not load SWT library. Reasons:
no swt-gtk-3740 in java.library.path
no swt-gtk in java.library.path
Can't load library: /home/wittk/.swt/lib/linux/x86/libswt-gtk-3740.so
Can't load library: /home/wittk/.swt/lib/linux/x86/libswt-gtk.so
The solution is to link the swt library files to the location it is looking. This solution was mentioned here. Just run the commands below.
cd ~/.swt/lib/linux/x86*
for file in /usr/lib/jni/libswt-*3740.so; do ln -s ${file}; done