Minecraft: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 29: | Line 29: | ||
== Obtain and run the server binary == | == Obtain and run the server binary == | ||
Download the current server binary | Download the current server binary from, e.g. minecraft_server.1.7.2.jar and run it. | ||
{{Command|java -jar | {{Command|wget minecraft_server.1.7.2.jar}} | ||
{{Command|java -Xmx32M -Xms1024M -jar minecraft_server.jar nogui}} | |||
Revision as of 01:01, 29 October 2013
For runnign Minecraft you need to have Java (icedtea7) installed.
Client
Obtain and run the client launcher
Download the Minecraft.jar and run the Launcher.
$ java -jar Minecraft.jar
Sound issues when using PulseAudio
Minecraft uses OpenAL which seems to get confused sometimes (missing sounds or music), so tell it to use the pulse driver first.
File: /etc/openal/alsoft.conf
drivers=pulse,alsa,oss
Server
Create a user for running Minecraft
# useradd -m -s /bin/bash minecraft
Become the minecraft user so that any file you download is owned by the correct user.
# su -l minecraft
Obtain and run the server binary
Download the current server binary from, e.g. minecraft_server.1.7.2.jar and run it.
$ wget minecraft_server.1.7.2.jar
$ java -Xmx32M -Xms1024M -jar minecraft_server.jar nogui