Here's something like what I saw: Exception in thread "Minecraft main thread" java.lang.UnsatisfiedLinkError: /home/ME/.minecraft/bin/natives/liblwjgl.so: /home/ME/.minecraft/bin/natives/liblwjgl.so: wrong ELF class: ELFCLASS32 (Possible cause: architecture word width mismatch)
I had the problem mentioned here at ArchLinux:
https://bbs.archlinux.org/viewtopic.php?id=126112 and wanted to document the quick fix so that future google hunters can find this tidbit of wisdom. From this link, I wrote a script as follows:
------------------------------------------------
#! /bin/sh
export LD_LIBRARY_PATH="/usr/lib/jvm/java-1.7.0-openjdk-1.7.0.1.x86_64/jre/lib/amd64"
cd /home/bens/bin && java -Xmx1024M -Xms512M -cp ~/bin/Minecraft.jar net.minecraft.LauncherFrame
------------------------------------------------
I got the path by
$ rpm -qa | grep -i java
and then
$ rpm -ql java-1.7.0-openjdk-LATEST-VERSION-FROM-PREVIOUS | grep -i jre