How to install Minecraft Server on Raspberry Pi 4
Revision as of 23:26, 10 February 2021 by U731219879 rc (talk | contribs)
Basic File System Setup.
Step are following the Youtube Video by Macintosh Fan Technology
https://www.youtube.com/watch?v=SBX-90NcAJo
Make sure your Java version is Java 8 or newer.
Change Directory to Desktop
cd home/pi/Desktop or cd Desktop
Make a new directory called minecraft_server
mkdir minecraft_Server Change to the directory cd minecraft_server
Use the touch command to create a shell script file in that directory name Start.sh
touch start.sh
Modify the start.sh file using nano.
sudo nano start.sh
Add the following 2 lines and save file:
cd /home/pi/Desktop/minecraft_server/ java -Xmx1024M -Xmx2000M -XX:+UseConcMarkSweepGC -jar spigot.jar nogui
Now lets download the Spigot Server File from the getbukkit.org download.
Open Spigot Server Download using the following URL:
https://getbukkit.org/download/spigot
mkdir - Make directory
mkdir rusty - Creates a directory named rusty mkdir Documents/rusty - Creates a directory named rusty in the folder Documents.