Não é possível executar o minecraft no Ubuntu 12.04 lts [duplicado]

0

Eu estava tentando rodar minecraft no meu laptop com o Ubuntu 12.04 lts de 64 bits. Eu tenho um ideapad p580 da Lenovo com 7,7 Gb e um processador Intel® Core ™ i7-3520M a 2,90GHz × 4. Sob a seção de gráficos da visão geral do sistema no Ubuntu diz que eu não tenho nenhum instalado. Meu computador vem com placa gráfica nvidia geforce mas não é reconhecido. Quando eu começo minecraft eu recebo este relatório de acidente.

---- Minecraft Crash Report ----
// Shall we play a game?

Time: 24/06/13 7:23 PM
Description: Failed to start game

org.lwjgl.LWJGLException: Could not init GLX
    at org.lwjgl.opengl.LinuxDisplayPeerInfo.initDefaultPeerInfo(Native Method)
    at org.lwjgl.opengl.LinuxDisplayPeerInfo.<init>(LinuxDisplayPeerInfo.java:52)
    at org.lwjgl.opengl.LinuxDisplay.createPeerInfo(LinuxDisplay.java:684)
    at org.lwjgl.opengl.Display.create(Display.java:854)
    at org.lwjgl.opengl.Display.create(Display.java:784)
    at org.lwjgl.opengl.Display.create(Display.java:765)
    at net.minecraft.client.Minecraft.a(SourceFile:235)
    at avv.a(SourceFile:56)
    at net.minecraft.client.Minecraft.run(SourceFile:507)
    at java.lang.Thread.run(Thread.java:679)

Uma explicação detalhada do erro, seu caminho de código e todos os detalhes conhecidos são os seguintes:

-- System Details --
Details:
    Minecraft Version: 1.5.2
    Operating System: Linux (amd64) version 3.5.0-34-generic
    Java Version: 1.6.0_27, Sun Microsystems Inc.
    Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Sun Microsystems Inc.
    Memory: 406175448 bytes (387 MB) / 514523136 bytes (490 MB) up to 1908932608 bytes (1820 MB)
    JVM Flags: 2 total; -Xmx2048M -Xms512M
    AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
    Suspicious classes: No suspicious classes found.
    IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
    LWJGL: 2.4.2
    OpenGL: ~~ERROR~~ NullPointerException: null
    Is Modded: Probably not. Jar signature remains and client brand is untouched.
    Type: Client (map_client.txt)
    Texture Pack: Default
    Profiler Position: N/A (disabled)
    Vec3 Pool Size: ~~ERROR~~ NullPointerException: null

Eu posso executá-lo em diferentes versões do Linux, como o fedora.

    
por user170011 25.06.2013 / 04:49

1 resposta

0

Eu suspeito que o seu driver pode estar instalado mas não em uso, dê uma olhada no seu arquivo de configuração usando:

sudo nano /etc/X11/xorg.conf

Se os seus dados não estiverem disponíveis, talvez seja necessário adicionar isso ou algo semelhante para ativá-los.

Section "Screen"
Identifier "Default Screen"
DefaultDepth 24
EndSection

Section "Module"
Load "glx"
EndSection

Section "Device"
Identifier "Default Device"
Driver "nvidia"
Option "NoLogo" "True"
EndSection

E, em seguida, salve e no tipo de terminal:

sudo reboot

    
por cossacksman 25.06.2013 / 06:11