Minecraft server – Debian variants

3D-Grass-iconMinecraft have become unbelievable popular. Simple graphics in a huge sandbox with total freedom seems to do the tricks.

We will assume the server is about empty and clean.

First thing we’ll do is update apt-get.
apt-get update

If you don’t have Java 1.6 or higher, we will need to install Java.
To check your java version
java -version

If it don’t return anything, or version number lower than 1.6, then install it.
apt-get install openjdk-7-jre

To be able to run the server without having the console open, install screen.
apt-get install screen

make a directory for it, like home/minecraft (you can of course make a user for it too)
mkdir /home/minecraft

move over to minecraft folder and download the server (latest current version is 1.72)
wget https://s3.amazonaws.com/Minecraft.Download/versions/1.7.2/minecraft_server.1.7.2.jar

Start the Minecraft server.
screen java -Xmx512M -Xms512M -jar minecraft_server.1.7.2.jar nogui

Xmx512M = Maxium 512MB memory
Xms512M = Startup with 512MB memory

Press ctrl+a and then ctrl+d to de-attach from the console for the Minecraft server.

Later I’ll show some Minecraft config stuff.

Happy gaming!

About Author

Related Posts

php8 gd

PHP8 gd Activate after installation

PHP8 GD activate after installation. GD doesn’t get activated by default. Not even a reboot after installation will activate it. So how do we do it? In…

Debian 12: linux-image-6.1.0-10amd64

Troubleshooting dependency issues in Debian 12: Resolving linux-image-6.1.0-10amd64 package dependency problems. If you installed the Debian 12 from the live image the issue is the raspi-firmware. Even…

4 Best Free Nas Software That Is Open Source

Free NAS software or operating systems that are free to use and will turn a computer into a NAS more advanced than the dedicated boxes sold. What…

Raspbian default password

Raspbian default password

Looking for the Raspbian default password? It is the most essential username and password that you will need for your raspberry. At least if you are running…

OpenMediaVault default password

OpenMediaVault default password

OpenMediaVault default password is printed in the documentation. I did not see it the first time I installed it either. So I had to do some detective…

Debian change dns

Debian change DNS settings to a new DNS

Debian change DNS settings for speed improvement or privacy. It is really easy to do. So let us see how it’s done and get to it. The…

This Post Has One Comment

Leave a Reply