~~~ ServerConfig File ~~~ Place the config file here on your VPS: /root/.config/unity3d/MA/LAC/ServerConfig.txt ~~~ RUN SERVER ~~~ you need to install these: apt-get install screen unzip libc6-i386 lib32stdc++6 libncurses5:i386 download the game on your vps: wget http://lacrimesonline.com/builds/LAC_Linux_v1.8.zip unzip the game: unzip LAC_Linux_v1.8.zip give it execute permission: chmod +x LAC_Linux_v1.8.x86_64 create a screen so you can close the terminal: screen -S test run the game in screen: ./LAC_Linux_v1.8.x86_64 detach from screen: Ctrl + A + D close the terminal. ~~~ ENJOY ~~~ later accessing terminal: screen -r test ~~~ SYSTEMD ~~~ (Optional, This will keep the app running if crashed) create file for auto-run service: sudo nano /etc/systemd/system/game.service copy & paste into the file: ------------------------------------------- [Unit] Description=Game Server After=network.target [Service] ExecStart=/root/LAC_Linux_v1.8.x86_64 Restart=always RestartSec=5 WorkingDirectory=/root User=root RestartForceExitStatus=0 #Environment=GAME_VAR=value [Install] WantedBy=multi-user.target ------------------------------------------- reload & start: sudo systemctl daemon-reload sudo systemctl enable game.service sudo systemctl start game.service check status: sudo systemctl status game.service see live logs: sudo journalctl -u game.service -f