In this tutorial, I’ll be covering the installation of a pack called Age of Engineering. It is one of the most popular packs for Minecraft. If installed properly, you’ll learn how to install Age of Engineering on CentOS 7.
Server with at least one gigabyte of RAM.
Java
wget
screen
unzip
nano
Step one – updating our packages:
yum update -yStep two – installing java, screen, and unzip:
yum install java screen unzip -yStep one – create a new directory:
cd ~
mkdir server
cd serverStep two – download Forge:
wget http://files.minecraftforge.net/maven/net/minecraftforge/forge/1.12-14.21.1.2443/forge-1.12-14.21.1.2443-installer.jarStep three - run the installer:
java -jar forge-1.12-14.21.1.2443-installer.jar --installServerNow that we have Forge ready, we need to download the Age of Engineering modpack:
wget https://addons-origin.cursecdn.com/files/2419/378/Age%20of%20Engineering-1.0.0.zipOnce this is complete, extract the archive:
unzip "Age of Engineering-1.0.0.zip"Step four – creating the start file:
nano start.shOnce in, paste the following:
java -Xmx1024M -Xms1024M -jar minecraft_server.jarSave and exit CTRL + O, followed by the Enter or Return key.
Step five – setting the appropriate permissions:
chmod 755 start.shAn important thing to note is that Minecraft servers will not continue to run in the background. automatically. As such, we need to use a utility called screen.
Step one – paste the following to open a screen:
screen -S serverStep two – start the server:
./start.shStep three – exit the screen. You can do this by pressing the following on your keyboard: CTRL + A + D.
Congratulations! You’ve successfully installed an Age of Engineering server.
You can connect to it by finding the IP address of your server in the Aklweb host control panel. Paste the IP address into your Minecraft client, and you will be good to go. Enjoy!