Ubuntu下Eclipse无法正常启动问题解决

来源:互联网 发布:佳能ip2880s清零软件 编辑:程序博客网 时间:2024/04/28 19:53

首先保证Java环境配置正常。

启动eclipse,提示如下

root@exserver-5-8-6:~/eclipse# ./eclipse
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=256m; support was removed in 8.0
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.
Eclipse:
An error has occurred. See the log file
/root/eclipse/configuration/1438655757551.log.


查看错误日志文件,提示如下:


!ENTRY org.eclipse.osgi 4 0 2015-08-04 10:44:16.696
!MESSAGE Application error
!STACK 1
java.lang.UnsatisfiedLinkError: Could not load SWT library. Reasons:
 /root/eclipse/configuration/org.eclipse.osgi/673/0/.cp/libswt-pi-gtk-4430.so: libgtk-x11-2.0.so.0: cannot open shared object file: No such file or directory
 no swt-pi-gtk in java.library.path
 /root/.swt/lib/linux/x86_64/libswt-pi-gtk-4430.so: libgtk-x11-2.0.so.0: cannot open shared object file: No such file or directory
 Can't load library: /root/.swt/lib/linux/x86_64/libswt-pi-gtk.so


解决方法:

To fix this, simple install the package ia32-libs-gtk

$ sudo apt-get install ia32-libs-gtk

Now run the application again and the error should go away.


1 0