Last active
August 20, 2019 18:11
-
-
Save z3nth10n/b9071d7db29751deb14897d7ef0ff11c to your computer and use it in GitHub Desktop.
Terraria Server config for Linux
This file contains 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
#!/bin/bash | |
wget https://github.com/tModLoader/tModLoader/releases/download/v0.10.1.5/tModLoader.Linux.v0.10.1.5.zip | |
wget http://terraria.org/server/terraria-server-1352.zip | |
mkdir terraria-mods | |
mkdir terraria-server | |
mkdir 1352 | |
apt-get install unzip | |
unzip terraria-server-1352.zip -d 1352 | |
cp -r 1352/Linux/* terraria-server/ | |
unzip tModLoader.Linux.v0.10.1.5.zip -d terraria-server |
This file contains 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
#!/bin/bash | |
# E:\JUEGOS\Terraria Modded>pscp m.zip [email protected]:/root/terraria-mods/mods.zip | |
unzip terraria-mods/mods.zip | |
cp -r terraria-mods/ModLoader/Mods/* .local/share/Terraria/ModLoader/Mods/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment