27 achievements
182 recipes
Setting user: kotoroshinoto, 1639446256753888335
Exception in thread "Minecraft main thread" java.lang.UnsatisfiedLinkError: /home/gooch/.minecraft/bin/natives/liblwjgl.so: /home/gooch/.minecraft/bin/natives/liblwjgl.so: wrong ELF class: ELFCLASS32 (Possible cause: architecture word width mismatch)
at java.lang.ClassLoader$NativeLibrary.load(Native Method)
at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1924)
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1821)
at java.lang.Runtime.load0(Runtime.java:792)
at java.lang.System.load(System.java:1059)
at org.lwjgl.Sys$1.run(Sys.java:69)
at java.security.AccessController.doPrivileged(Native Method)
at org.lwjgl.Sys.doLoadLibrary(Sys.java:65)
at org.lwjgl.Sys.loadLibrary(Sys.java:81)
at org.lwjgl.Sys.<clinit>(Sys.java:98)
at org.lwjgl.opengl.Display.<clinit>(Display.java:132)
at net.minecraft.client.Minecraft.a(SourceFile:180)
at net.minecraft.client.Minecraft.run(SourceFile:650)
at java.lang.Thread.run(Thread.java:722)
Looks like you need Java 7 32 Bit, if that doesn't work, use Java 6 32 Bit. (P.S: When installing different versions of Java make sure to delete the other one!)
This is a work computer where I use certain software that require 64 bit java, telling me to use 32 bit java doesnt deal with the reality of the situation. Mojang has comitted an error here that needs to be corrected. There is no reason that a game based in JAVA should be having this difficulty. especailly considering that the native directory within .minecraft/bin also contains liblwjgl64.so. There is a bug or fault in the code somewhere that is causing it to assume 32 bit environment when this is not the case.
--edit:
Also, I'm running Ubuntu linux, the most stable way to install java gives me the 64 bit version by default.
This issue is solved by adding /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64 to the library path :
export LD_LIBRARY_PATH="/usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64"
(or /etc/ld.so.conf.d/)
for the time being I added this to my .bash_profile environment setup
It seems ubuntu's installer may have missed a step in setting up the environment during the install. (I can't really be sure where this error originated.)
Still, this is the sort of thing that should NOT be happening.
This is a work computer where I use certain software that require 64 bit java, telling me to use 32 bit java doesnt deal with the reality of the situation. Mojang has comitted an error here that needs to be corrected. There is no reason that a game based in JAVA should be having this difficulty. especailly considering that the native directory within .minecraft/bin also contains liblwjgl64.so. There is a bug or fault in the code somewhere that is causing it to assume 32 bit environment when this is not the case.
--edit:
Also, I'm running Ubuntu linux, the most stable way to install java gives me the 64 bit version by default.
This issue is solved by adding /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64 to the library path :
export LD_LIBRARY_PATH="/usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64"
(or /etc/ld.so.conf.d/)
for the time being I added this to my .bash_profile environment setup
It seems ubuntu's installer may have missed a step in setting up the environment during the install. (I can't really be sure where this error originated.)
Still, this is the sort of thing that should NOT be happening.