I've searched through the forums and internet but haven't found something to help me out. I'm willing to admit there may be some ignorance at play, this is my first rodeo with oxide.
I have a functioning rust server running on Ubuntu 20.04 64 bit. I have installed oxide by extracting the contents of the Linux folder to /home/<obfus>/steamcmd/RustDedicated_Data/Managed.
This is my shell script to start the server:
Wec#!/bin/sh
clear while : do
exec ./RustDedicated -batchmode -nographics \
-server.ip ... \
-server.port 28015 \
-rcon.ip ... \
-rcon.port 28016 \
-rcon.password ... \
-server.maxplayers 75 \
-server.hostname "..." \
-server.identity ... \
-server.level "Procedural Map" \
-server.seed 1955 \
-server.worldsize 3150 \
-server.saveinterval 300 \-server.globalchat true \
-server.description "...y" \
-server.headerimage "512x256px JPG/PNG headerimage link here" \
-server.url "Website Here"
echo "\nRestarting server...\n" done
I am at a bit of a loss here, since I seem to be following every guide and other posts on these forums. Only two things I can think of is that I can't add oxide to an existing world or that shell script is running steamcmd and I don't notice it.
