hello everyone, this is my first post in the forums, i figured out how to get the Conan exiles server running on the UBUNTU server i built and streamlined the process to simple copy and paste. please note this is just to get the server up and running, no extra bells and whistles, haven’t bothered with mods, i’m not that experienced. i just noticed that some of the older posts are a little outdated and needed some fine tuning. theoretically you should be able to simply copy all text in boxes and paste in a terminal window and it should just work. feel free to comment with any fixes if anything is screwed up. any support from myself will be minimal due to scheduling but i will do my best
conan server setup:
sudo useradd -m conanserver
sudo mkdir /home/conanserver/server
sudo chmod +777 /home/conanserver/server
sudo apt-get install lib32gcc1 software-properties-common -y
sudo dpkg --add-architecture i386
sudo apt-get update -y
sudo apt-get install steamcmd
sudo apt-get install wine-stable
ln -s /usr/games/steamcmd steamcmd
steamcmd +@sSteamCmdForcePlatformType windows +login anonymous +force_install_dir /home/conanserver/server +app_update 443030 +exit
sudo apt-get install screen xvfb
how to run:
cd /home/conanserver/server
xvfb-run --auto-servernum --server-args='-screen 0 640x480x24:32' wine ConanSandboxServer.exe -log
#run for five minutes initially before shutting down to allow ini config files to populate
update server:
steamcmd +@sSteamCmdForcePlatformType windows +login anonymous +force_install_dir /home/conanserver/server +app_update 443030 +exit
change settings:
cd /home/conanserver/server/ConanSandbox/Config
sudo nano DefaultServerSettings.ini
not sure is it matters but my server is built with, ryzen 3 2400G, 16 GB ram, b450 MOBO currently a 650 GB HDD(will upgrade to ssd later for better startup[startup is pretty fast as is though])
also its a good idea to SSH into your server inorder to copy and paste without needing a desktop
note: eNti a concerned user brought up the need for added security of the server directory. if your concerned with idea of unauthorized users accessing your server directory simply login to your sever and type in the terminal window
chmod -777 /home/conanserver/server
(this will take away all permissions for the directory, so now we need to give permissions to the specific user you will be using )
(in order to actually do this however you will need to login as a super user because we took all permissions away in the previous step)
sudo su -
enter admin password
(enter you users name in place of the first ‘conanserver’ below ‘conanserver’ is my user in this example but you may want a different user having access)
chown conanserver /home/conanserver/server
exit
(please be sure to type exit as you do not want to leave your server with the super user logged in)
this is also a great way to make your server a ‘hard target’ for unsavory folks
also if im mistaken in how this patch is worded or you have an easier way please let me know so i may fix or add it.