Minecraft is a sandbox independent video game, inspired by Infiniminer, written in Java by Markus “Notch” Persson created.
Here we describe how to install Minecraft server on pcDuino
First we need to install Java.
Download Java
$wget --no-cookies --header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F" "http://download.oracle.com/otn-pub/java/jdk/7u25-b15/jdk-7u25-linux-arm-sfp.tar.gz"
Creat a directory to put our files
$sudo mkdir -p -v /opt/java
Unzip
$tar xvzf ~/(Name of your Java package file).gz
Moving Java to the position which we wanted.
sudo mv -v ~/jdk1.7.0_06 /opt/java
We need tell the new JVM to install pcDuino:
$sudo update-alternatives --install "/usr/bin/java" "java" "/opt/java/jdk1.7.0_06/bin/java" 1 $sudo update-alternatives --set java /opt/java/jdk1.7.0_06/bin/java
Then check version of Java
$java -version
Install Minecraft server:
Make a Folder for the Server:
$mkdir MCServer
Move into the folder:
$cd MCServer
Download the Server
$wget https://s3.amazonaws.com/MinecraftDownload/launcher/minecraft_server.jar
Start it up
$java -jar minecraft_server.jar
<ignore_js_op>
Leave a Reply
You must be logged in to post a comment.