Are there any links or tutorials for this?
Thanks,CFCParadox
Do these commands in order - tell me if you have any troubles.
cd /
mkdir minecraft
cd minecraft
wget http://minecraft.net/minecraft-server.zip
unzip minecraft-server.zip
--- You can then edit files such as admins.txt etc using nano, for example 'nano server.properties' and 'nano admins.txt'.
--- Once you have finished configuring the server to your liking, run the command below to run the server.
nohup java -cp minecraft-server.jar com.mojang.minecraft.server.MinecraftServer
--- To kill the server first run 'ps aux'. Find a line that looks like the one below.
root **13479** 0.9 0.5 185913 46100 ? Jul16 13:10 java -cp minecraft-server.jar
com.mojang.minecraft.server.MinecraftServer
--- You want to find that line, then look for the PID on the line (usually the second number). Then run the command below to kill it.
kill 13479
Sorry for the late response and thanks for your help! But how do you edit the admins, builders and etc...
WoM Coins: 20
Do these commands in order - tell me if you have any troubles.
cd /
mkdir minecraft
cd minecraft
wget http://minecraft.net/minecraft-server.zip
unzip minecraft-server.zip
--- You can then edit files such as admins.txt etc using nano, for example 'nano server.properties' and 'nano admins.txt'.
--- Once you have finished configuring the server to your liking, run the command below to run the server.
nohup java -cp minecraft-server.jar com.mojang.minecraft.server.MinecraftServer
--- To kill the server first run 'ps aux'. Find a line that looks like the one below.
root **13479** 0.9 0.5 185913 46100 ? Jul16 13:10 java -cp minecraft-server.jar
com.mojang.minecraft.server.MinecraftServer
--- You want to find that line, then look for the PID on the line (usually the second number). Then run the command below to kill it.
kill 13479