viewtopic.php?f=78&t=186547
New simplified tutorial (22/04/16) :
Tutorial Video : https://www.youtube.com/watch?v=EVpGh0zFInM
1 Make sure you have the latest Raspbian Jessie :
Code: Select all
sudo apt-get update && sudo apt-get -y upgrade
Set overclock to High(1000MHz) (for Pi2, ignore for Pi3)
Set GPU memory to 64Mb
If your using Pixel - disable the Splash Screen
Reboot
3 Install the experimental OpenGL Driver, sound & glxgears demo
Code: Select all
sudo apt-get -y install xcompmgr libgl1-mesa-dri && sudo apt-get -y install libalut0 libalut-dev && sudo apt-get -y install mesa-utils
Code: Select all
sudo raspi-config
5 Test driver using glxgears
Code: Select all
glxgears
6 Download Minecraft
Code: Select all
mkdir ~/Minecraft; mkdir ~/Minecraft/Natives; cd ~/Minecraft && wget https://s3.amazonaws.com/Minecraft.Download/launcher/Minecraft.jar
Code: Select all
java -jar Minecraft.jar
If you've got the latest Minecraft.jar click 'edit profile' and select use release - 'release 1.8.9', then 'save profile'
Click Play to install game
You will then receive an ‘Unsatisfied link error’
Close launcher
7b Copy libraries
Code: Select all
cd ~/Minecraft/Natives && wget https://www.dropbox.com/s/4oxcvz3ky7a3x6f/liblwjgl.so && wget https://www.dropbox.com/s/m0r8e01jg2og36z/libopenal.so
Code: Select all
cd ~/.minecraft/libraries/org/lwjgl/lwjgl/lwjgl/2.9.4-nightly-20150209 && rm lwjgl-2.9.4-nightly-20150209.jar; wget https://www.dropbox.com/s/mj15sz3bub4dmr6/lwjgl-2.9.4-nightly-20150209.jar
9 Copy run script
Code: Select all
cd ~/Minecraft/ && wget https://www.dropbox.com/s/jkhr58apwa7pt1w/run.sh && sudo chmod +x run.sh
11 From Terminal use ./run.sh
Change options in Minecraft to reduce render chunks to 2, this should avoid running out of memory.
https://www.youtube.com/watch?v=f8wzgsQN_iM
Hopefully Minecraft should run

Old Tutorial for reference :
Make sure you have the latest Raspbian Jessie :
sudo apt-get update
sudo apt-get upgrade
(was using 'sudo apt-get dist-upgrade' but caused problems with 18/3 Raspbian Jessie)
sudo apt-get install raspi-gpio
Add the experimental GL driver :
sudo apt-get install xcompmgr libgl1-mesa-dri
In Raspberry Pi Configuration :
Set overclock to High(1000)
Set GPU memory to 128Mb
Using ‘sudo raspi-config’ from terminal :
Enable ‘AA GL Driver’
You must now reboot to enable the driver.
Check OpenGL is working :
sudo apt-get install mesa-utils
glxgears (should run at approx 60 fps)
Download Minecraft :
https://minecraft.net/download
download minecraft.jar (under show all platforms)
mkdir ~/Minecraft
mkdir ~/Minecraft/Natives
mv ~/Downloads/Minecraft.jar ~/Minecraft
cd ~/Minecraft
Install launcher :
java -jar Minecraft.jar
Login with Minecraft email and password
If you've got the latest Minecraft.jar click 'edit profile' and select use release - 'release 1.8.9', then 'save profile'
Click Play to install game
You will then receive an ‘Unsatisfied link error’
Close launcher
Update lwjgl in Minecraft :
Replace /home/pi/.minecraft/libraries/org/lwjgl/lwjgl/lwjgl/2.9.4-nightly-20150209/lwjgl-2.9.4-nightly-20150209.jar with :
http://orienteer.webspace.virginmedia.c ... 150209.jar
Replace /home/pi/.minecraft/libraries/org/lwjgl/lwjgl/lwjgl/2.9.4-nightly-20150209/lwjgl-2.9.4-nightly-20150209.jar.sha with :
http://orienteer.webspace.virginmedia.c ... 09.jar.sha
Download 2 libraries to ~/Minecraft/Natives :
http://orienteer.webspace.virginmedia.c ... iblwjgl.so
http://orienteer.webspace.virginmedia.c ... bopenal.so
Save run.sh to ~/Minecraft :
http://orienteer.webspace.virginmedia.c ... aft/run.sh
chmod +x run.sh
Edit run.sh, update MINECRAFT_LOGIN, MINECRAFT_USERNAME and MINECRAFT_PASSWORD to your own
From Terminal use ./run.sh
( based on Roger Allen's tutorial :
http://rogerallen.github.io/jetson/2014 ... etson-tk1/ )
The following should get the sound working :
sudo apt-get install libalut0 libalut-dev
Change options in Minecraft to reduce render chunks to 2, this should avoid running out of memory.
https://www.youtube.com/watch?v=f8wzgsQN_iM
Hopefully Minecraft should run
