Minecraft on Ubuntu

Associate
Joined
8 May 2011
Posts
60
I've just paid for and downloaded minecraft on ubuntu 11.04. However, when Iog in, the screen goes black for a few seconds, then the error below pops up. If I force update, it updates, then the same thing happens.

I'm pretty certain that java is up to date because I just downloaded it from the software center so I could open with 'sun java 6 runtime'.


--- BEGIN ERROR REPORT a1dce528 --------
Generated 7/2/11 9:52 AM

Minecraft: Minecraft Beta 1.7.2
OS: Linux (i386) version 2.6.38-8-generic
Java: 1.6.0_24, Sun Microsystems Inc.
VM: Java HotSpot(TM) Server VM (mixed mode), Sun Microsystems Inc.
LWJGL: 2.4.2
[failed to get system properties (java.lang.NullPointerException)]

java.lang.IllegalStateException: Only one LWJGL context may be instantiated at any one time.
at org.lwjgl.opengl.Display.create(Display.java:846)
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:294)
at net.minecraft.client.Minecraft.run(SourceFile:716)
at java.lang.Thread.run(Thread.java:662)
--- END ERROR REPORT 9a2f7158 ----------

Edit: I thought that maybe running an older version of minecraft might solve the problem, but after a quick google the only hits I could find required knowing someone with a previous version, or having previously had an older version installed.
 
Last edited:
I'm trying to play on a advent 5301 which doesn't have a dedicated graphics card - I can't see how minecraft can be graphics intensive though?
 
It's not that it's intensive, it's more along the lines that you probably have no hardware acceleration.

Open up a terminal and type in glxinfo | grep direct and post the result here. lspci and lsmod output would be nice too.

Copied and pasted from the Terminal.

Code:
tom@tom-DIXONSXP:~$ glxinfo | grep direct
direct rendering: Yes

tom@tom-DIXONSXP:~$ lsmod
Module                  Size  Used by
cryptd                 19801  0 
aes_i586               16956  1 
aes_generic            38023  1 aes_i586
arc4                   12473  2 
rtl8187                56206  0 
mac80211              257001  1 rtl8187
cfg80211              156212  2 rtl8187,mac80211
eeprom_93cx6           12653  1 rtl8187
parport_pc             32111  0 
ppdev                  12849  0 
vesafb                 13449  1 
binfmt_misc            13213  1 
snd_hda_codec_realtek   255820  1 
joydev                 17322  0 
snd_hda_intel          24140  2 
snd_hda_codec          90901  2 snd_hda_codec_realtek,snd_hda_intel
snd_hwdep              13274  1 snd_hda_codec
snd_pcm                80244  2 snd_hda_intel,snd_hda_codec
snd_seq_midi           13132  0 
snd_rawmidi            25269  1 snd_seq_midi
snd_seq_midi_event     14475  1 snd_seq_midi
snd_seq                51291  2 snd_seq_midi,snd_seq_midi_event
snd_timer              28659  2 snd_pcm,snd_seq
snd_seq_device         14110  3 snd_seq_midi,snd_rawmidi,snd_seq
psmouse                73312  0 
snd                    55295  13 snd_hda_codec_realtek,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm,snd_rawmidi,snd_seq,snd_timer,snd_seq_device
serio_raw              12990  0 
video                  18951  0 
sis_agp                13127  1 
shpchp                 32345  0 
soundcore              12600  1 snd
snd_page_alloc         14073  2 snd_hda_intel,snd_pcm
lp                     13349  0 
parport                36746  3 parport_pc,ppdev,lp
usbhid                 41704  0 
hid                    77084  1 usbhid
usb_storage            43946  0 
uas                    17676  0 
sata_sis               12704  2 
sis190                 22622  0 

tom@tom-DIXONSXP:~$ lspci
00:00.0 Host bridge: Silicon Integrated Systems [SiS] 671MX
00:01.0 PCI bridge: Silicon Integrated Systems [SiS] SiS AGP Port (virtual PCI-to-PCI bridge)
00:02.0 ISA bridge: Silicon Integrated Systems [SiS] SiS968 [MuTIOL Media IO] (rev 01)
00:02.5 IDE interface: Silicon Integrated Systems [SiS] 5513 [IDE] (rev 01)
00:03.0 USB Controller: Silicon Integrated Systems [SiS] USB 1.1 Controller (rev 0f)
00:03.1 USB Controller: Silicon Integrated Systems [SiS] USB 1.1 Controller (rev 0f)
00:03.3 USB Controller: Silicon Integrated Systems [SiS] USB 2.0 Controller
00:04.0 Ethernet controller: Silicon Integrated Systems [SiS] 191 Gigabit Ethernet Adapter (rev 02)
00:05.0 IDE interface: Silicon Integrated Systems [SiS] SATA Controller / IDE mode (rev 03)
00:0f.0 Audio device: Silicon Integrated Systems [SiS] Azalia Audio Controller
01:00.0 VGA compatible controller: Silicon Integrated Systems [SiS] 771/671 PCIE VGA Display Adapter (rev 10)
 
Ok, thanks for the help, at least now I know why it won't work and can just leave it in peace. When I finally get a new laptop I'll remember to get one with a dedicated graphics card then.
 
Didn't see post #11 sorry, just tried

tom@tom-DIXONSXP:~/Downloads$ java -Xmx1024M -Xms512M -cp Minecraft.jar net.minecraft.LauncherFrame
Exception in thread "main" java.lang.NoClassDefFoundError: net/minecraft/LauncherFrame
Caused by: java.lang.ClassNotFoundException: net.minecraft.LauncherFrame
at java.net.URLClassLoader$1.run(URLClassLoader.java:217)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:205)
at java.lang.ClassLoader.loadClass(ClassLoader.java:321)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:294)
at java.lang.ClassLoader.loadClass(ClassLoader.java:266)
Could not find the main class: net.minecraft.LauncherFrame. Program will exit.
 
Back
Top Bottom