从 Ubuntu 12.04 升级到 14.04 后 Aptana Studio 3 无法工作?

从 Ubuntu 12.04 升级到 14.04 后 Aptana Studio 3 无法工作?

当我从 Ubuntu 12.04 升级到 14.04 时,Aptana Studio 3 不再工作。几分钟后,当我尝试打开它时,它就关闭了,但是当我在终端中打开它时,我收到了这个错误消息。

A fatal error has been detected by the Java Runtime Environment:

 SIGSEGV (0xb) at pc=0xa144786d, pid=3011, tid=3076155136

JRE version: OpenJDK Runtime Environment (7.0_51-b31) (build 1.7.0_51-b31)
Java VM: OpenJDK Client VM (24.51-b03 mixed mode, sharing linux-x86 )
 Problematic frame:
 C  [libsoup-2.4.so.1+0x5486d]  soup_session_feature_detach+0x1d

 Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again

 An error report file with more information is saved as:
 /opt/Aptana_Studio_3/hs_err_pid3011.log

 If you would like to submit a bug report, please include 
 instructions on how to reproduce the bug and visit:
   http://icedtea.classpath.org/bugzilla
 The crash happened outside the Java Virtual Machine in native code.
 See problematic frame for where to report the bug.

我尝试使用 Synaptic 重新安装该框架,但不起作用。之后,我卸载了 Aptana Studio。我通过这个安装了它手动的.我在升级前和升级后都使用过此手册。

答案1

升级到 UBUNTU 14.04 后,我遇到了同样的问题。为了解决这个问题,我在“AptanaStudio3.ini“文件(你的情况应该位于'/opt/Aptana_Studio_3/AptanaStudio3.ini')

-Dorg.eclipse.swt.browser.DefaultType=mozilla

这对我有用(至少在过去一个小时里,因为它会在几分钟后关闭),我希望它也能解决你的问题。

答案2

尝试了很多次之后,这个对我有用(Ubuntu 14.04 + java 7 oracle):在终端中:

ulimit -c unlimited

并且它一直有效(直到现在)

答案3

—— 别介意,这根本没用 ——

我在某处读到过 OpenJDK 存在问题,最好使用 OracleJDK。您可以像我一样先尝试删除 OpenJDK,或者直接安装 OracleJDK。

这些线条似乎为我解决了这个问题。

sudo apt-get install python-software-properties
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update

相关内容