Last active
October 25, 2024 05:11
-
-
Save wadewegner/a7100cac10ccba5b94d1f4aa1a156f09 to your computer and use it in GitHub Desktop.
Steps for installing Minecraft, Forge, and Mods for 1.11.2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install forge for 1.12.2 | |
# wget https://s3.amazonaws.com/Minecraft.Download/versions/1.11.2/minecraft_server.1.11.2.jar | |
# wget https://s3.amazonaws.com/Minecraft.Download/versions/1.12.2/minecraft_server.1.12.2.jar | |
wget https://launcher.mojang.com/mc/game/1.12.2/server/886945bfb2b978778c3a0288fd7fab09d315b25f/server.jar -O minecraft_server.1.12.2.jar | |
# install (first time) | |
java -Xmx1024M -Xms1024M -jar minecraft_server.1.12.2.jar nogui | |
# set eula acceptance to true | |
vi eula.txt | |
# install (second time, after eula) | |
java -Xmx1024M -Xms1024M -jar minecraft_server.1.12.2.jar nogui | |
# get minecraft forge installer | |
wget http://files.minecraftforge.net/maven/net/minecraftforge/forge/1.11.2-13.20.1.2530/forge-1.11.2-13.20.1.2530-installer.jar | |
wget https://maven.minecraftforge.net/net/minecraftforge/forge/1.12.2-14.23.5.2860/forge-1.12.2-14.23.5.2860-installer.jar -o forge-1.12.2.jar | |
# install minecraft forge | |
java -jar forge-1.12.2.jar --installServer | |
# Install mods in /mods | |
# wget https://www.dropbox.com/s/0y9yr1r0gacs5ot/jei_1.11.2-4.5.0.294.jar | |
# wget https://www.dropbox.com/s/rbs16cri51ysaqt/journeymap-1.11.2-5.5.2.jar | |
# wget https://www.dropbox.com/s/37eetdp2xzfer7u/Pam%27s%20HarvestCraft%201.11.2h.jar | |
# wget https://www.dropbox.com/s/ng21zitpg9nra8a/ProgressiveAutomation-1.11.2-1.7.6.jar | |
# wget https://www.dropbox.com/s/edgszcpvivqqxr5/hopperducts-mc1.11.2-1.4.9.2.jar | |
# wget https://www.dropbox.com/s/xc3j0r3w4p0e3r3/ThermalDynamics-1.11.2-2.2.7.16-universal.jar | |
# wget https://www.dropbox.com/s/9mqy6l3g0hfbb5z/ThermalFoundation-1.11.2-2.2.5.16-universal.jar | |
# wget https://www.dropbox.com/s/twbxxtsz58twy21/CoFHCore-1.11.2-4.2.8.16-universal.jar | |
# wget https://www.dropbox.com/s/es2rf31j15l6p80/CodeChickenLib-1.11.2-3.0.0.298-universal.jar | |
# wget https://www.dropbox.com/s/ljmfrq2d4nfcm7u/InventoryTweaks-1.62.jar | |
# wget https://www.dropbox.com/s/y2s0jyi60slh40a/StorageDrawers-1.11.2-4.2.10.jar | |
# wget https://www.dropbox.com/s/outwygbvr2s0ko7/Chameleon-1.11.2-3.1.0.jar | |
# wget https://www.dropbox.com/s/f1snnfnvzs8rhek/Botania%20r1.9-345.jar | |
# wget https://www.dropbox.com/s/jre1bbzcr7o4k7g/Baubles-1.11-1.4.6.jar | |
# wget https://www.dropbox.com/s/prckfqnxel7aorf/ImmersiveEngineering-0.11-63.jar | |
# Run in the background | |
nohup java -Xmx1024M -Xms1024M -jar forge-1.12.2.jar nogui > /dev/null 2>&1 & | |
# Check to see if it's running | |
ps -ef | grep forge | |
# Review logs | |
tail -n 100 logs/latest.log |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
joder, gracias bro, estuve buscando el wget de la 1.12.2 y nomas no lo encontraba