Debian 上的 Overture 工具每次都会崩溃
Overture tool on Debian crashes everytime
我已经在我的电脑上安装了 Debian 7。我通过下载并解压缩 .zip 文件来安装 Overture 工具。每次我尝试 运行 Overture 时,我都会收到以下错误消息:
# A fatal error has been detected by the Java Runtime Environment:
#
# SIGSEGV (0xb) at pc=0x00007f7ea122673f, pid=11073, tid=140182465734400
#
# JRE version: Java(TM) SE Runtime Environment (8.0_60-b27) (build 1.8.0_60-b27)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.60-b23 mixed mode linux-amd64 compressed oops)
# Problematic frame:
# C [libgdk-x11-2.0.so.0+0x5173f] gdk_display_open+0x3f
#
# Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again
#
# If you would like to submit a bug report, please visit:
# http://bugreport.java.com/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#
有人知道如何解决这个问题吗?
谢谢!
您可以找到一个简单的解决方案here
基本上,SWT_GTK3必须在运行序曲之前设置为0。因此,我们可以执行以下操作:
$ export SWT_GTK3=0 && ./Overture
感谢您的帮助!
我已经在我的电脑上安装了 Debian 7。我通过下载并解压缩 .zip 文件来安装 Overture 工具。每次我尝试 运行 Overture 时,我都会收到以下错误消息:
# A fatal error has been detected by the Java Runtime Environment:
#
# SIGSEGV (0xb) at pc=0x00007f7ea122673f, pid=11073, tid=140182465734400
#
# JRE version: Java(TM) SE Runtime Environment (8.0_60-b27) (build 1.8.0_60-b27)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.60-b23 mixed mode linux-amd64 compressed oops)
# Problematic frame:
# C [libgdk-x11-2.0.so.0+0x5173f] gdk_display_open+0x3f
#
# Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again
#
# If you would like to submit a bug report, please visit:
# http://bugreport.java.com/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#
有人知道如何解决这个问题吗?
谢谢!
您可以找到一个简单的解决方案here
基本上,SWT_GTK3必须在运行序曲之前设置为0。因此,我们可以执行以下操作:
$ export SWT_GTK3=0 && ./Overture
感谢您的帮助!