当启动“我的世界”1.8或更高版本时,它会立即崩溃,并使用以下崩溃日志:
Completely ignored arguments: [--nativeLauncherVersion, 286, --nativeLauncherVersion, 307]
[19:53:27] [Client thread/INFO]: Setting user: ninjakwool
[19:53:38] [Client thread/INFO]: LWJGL Version: 2.9.4
[19:53:43] [Client thread/INFO]: Reloading ResourceManager: Default
[19:53:47] [Sound Library Loader/INFO]: Starting up SoundSystem...
[19:53:47] [Thread-5/INFO]: Initializing LWJGL OpenAL
[19:53:47] [Thread-5/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
[19:53:48] [Thread-5/INFO]: OpenAL initialized.
[19:53:48] [Sound Library Loader/INFO]: Sound engine started
[19:54:01] [Client thread/INFO]: Created: 1024x512 textures-atlas
#
# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x27b93e88, pid=5192, tid=3920
#
# JRE version: Java(TM) SE Runtime Environment (8.0_25-b18) (build 1.8.0_25-b18)
# Java VM: Java HotSpot(TM) Client VM (25.25-b02 mixed mode windows-x86 )
# Problematic frame:
# C [ig4dev32.dll+0x3e88]
#
# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
#
# An error report file with more information is saved as:
# C:\Users\Matthew\AppData\Roaming\.minecraft\hs_err_pid5192.log
#
# If you would like to submit a bug report, please visit:
# http://bugreport.sun.com/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#
AL lib: (EE) alc_cleanup: 1 device not closed
Java HotSpot(TM) Client VM warning: Using incremental CMS is deprecated and will likely be removed in a future release我们能做些什么来解决这个崩溃的问题吗?
发布于 2016-09-01 01:43:01
您的错误报告显示了错误日志中的Windows目录,因此我假设您正在葡萄酒下运行“我的世界”。
如果是这样的话,您应该尝试以本地方式运行“我的世界”。为此,您需要安装某种形式的java,并且需要从这里下载Linux/其他版本的“我的世界”。(链接找到这里)
要下载Oracle Java 8,请在终端中运行以下命令:
sudo add-apt-repository ppa:webupd8team/java
sudo apt update
sudo apt install oracle-java8-installer若要安装OpenJRE 8,请在终端中运行以下命令:
sudo apt update
sudo apt install openjdk-8-jre一旦安装了java,打开一个终端,导航到下载的Minecraft.jar,并运行java -jar Minecraft.jar;这将启动Min克拉夫特启动程序。
如果这是在Windows下发生的崩溃,而不是Ubuntu上的酒,那么这可能会帮助您。(这个问题在AskUbuntu上也不会起作用。)
发布于 2020-08-29 17:47:04
我也遇到了类似的问题--最近的快照运行良好,但1.8.8崩溃了。它似乎需要更老的Java。因此,解决方案应该是,正如pizzapants184已经发布的安装Java 8一样:
sudo apt update
sudo apt install openjdk-8-jre然后可能更新备选方案,并将8设置为默认值:
sudo update-alternatives --config javahttps://askubuntu.com/questions/819372
复制相似问题