Search found 27 matches
- Wed Nov 08, 2017 8:48 am
- Forum: 7 Days to Die
- Topic: HamCraft ValMod A16.3 updated to A16.4
- Replies: 0
- Views: 231
HamCraft ValMod A16.3 updated to A16.4
HamCraft ValMod A16.3 updated to A16.4
- Thu Aug 24, 2017 4:32 pm
- Forum: Server Info
- Topic: A16.4 HamCraft - ValMod
- Replies: 0
- Views: 455
A16.4 HamCraft - ValMod
Server information Name: ValMod Engine: Alpha 16.4 Created: 2017-08-24 Status: Online as of 2017-11-08 Address: hammondslegacy.com, port 25000 Web Map: http://hammondslegacy.com:8100 Required client mods: ValMod Pack Overhaul Server side mods not required to be installed on clients: Compopack, cust...
- Wed Aug 23, 2017 8:02 pm
- Forum: Tutorials
- Topic: How to create a dedicated 7 Days to Die server on Linux
- Replies: 6
- Views: 1980
Crontab Schedule
Edit the crontab schedule for the root user crontab -e -u root ######################################## # Name: Crontab Schedule for root user # Author: LHammonds ############# Update Log ############### # 2017-08-20 - LTH - Created schedule ######################################## SHELL=/bin/sh PAT...
- Wed Aug 23, 2017 7:59 pm
- Forum: Tutorials
- Topic: How to create a dedicated 7 Days to Die server on Linux
- Replies: 6
- Views: 1980
Firewall Rules
Raise shields! (add firewall rules) Reset Firewall to factory default echo y | ufw reset ufw default deny incoming ufw default allow outgoing Allow SSH from only LAN connections (set as appropriate) ufw allow from 192.168.1.0/24 to any port 22 comment 'SSH for LAN' Add Steam rules ufw allow proto u...
- Wed Aug 23, 2017 7:55 pm
- Forum: Tutorials
- Topic: How to create a dedicated 7 Days to Die server on Linux
- Replies: 6
- Views: 1980
Web Map
Make the web map visible vi /opt/sdtd/instances/nav/webpermissions.xml Line 13: <permission module="web.map" permission_level="1000" /> vi /opt/sdtd/instances/rand/webpermissions.xml Line 13: <permission module="web.map" permission_level="1000" /> Restart all instances 7dtd.sh kill nav 7dtd.sh kill...
- Wed Aug 23, 2017 6:50 pm
- Forum: Tutorials
- Topic: How to create a dedicated 7 Days to Die server on Linux
- Replies: 6
- Views: 1980
Install Management Scripts
mkdir /tmp/t cd /tmp/t wget http://illy.bz/fi/7dtd/management_scripts.tar.gz tar xvzf management_scripts.tar.gz vi /tmp/t/etc/7dtd.conf Line 19: export SDTD_BASE=/opt/sdtd Line 25: export SDTD_BACKUP_ROOT=/bak/sdtd Copy files to their final destination chown root:root -R /tmp/t/* chmod 0600 /tmp/t/...
- Wed Aug 23, 2017 1:48 am
- Forum: Tutorials
- Topic: TEMP - Multiple engines on same server
- Replies: 5
- Views: 720
Crontab Schedule
Edit the crontab schedule for the root user crontab -e -u root ## Backup 7dtd vanilla engine instances 0 22 * * * /usr/local/bin/7dtd.sh backup > /dev/null 2>&1 ## Backup 7dtd modded engine instances 0 22 * * * /usr/local/bin/7dtdmod.sh backup > /dev/null 2>&1 ## Remove 7dtd backups older than 10 da...
- Wed Aug 23, 2017 1:03 am
- Forum: Tutorials
- Topic: TEMP - Multiple engines on same server
- Replies: 5
- Views: 720
Firewall Rules
Raise shields! (add firewall rules) ## Reset Firewall to factory default echo y | ufw reset ufw default deny incoming ufw default allow outgoing ## Allow SSH from only LAN connections (set as appropriate) ufw allow from 192.168.0.0/24 to any port 22 comment 'SSH for LAN' ufw allow from 192.168.1.0/...
- Wed Aug 23, 2017 1:02 am
- Forum: Tutorials
- Topic: TEMP - Multiple engines on same server
- Replies: 5
- Views: 720
Game Engine, Instances, Mods
mkdir /tmp/t cd /tmp/t wget http://illy.bz/fi/7dtd/management_scripts.tar.gz tar xvzf management_scripts.tar.gz vi /tmp/t/etc/7dtd.conf Line 19: export SDTD_BASE=/opt/sdtdvan Line 25: export SDTD_BACKUP_ROOT=/bak/sdtdvan Line 34: export SDTD_USER=sdtdvan cp /tmp/t/etc/7dtd.conf /tmp/t/etc/7dtdmod.c...
- Wed Aug 23, 2017 1:00 am
- Forum: Tutorials
- Topic: TEMP - Multiple engines on same server
- Replies: 5
- Views: 720
Operating System Preparation
# Used to compile start daemon apt-get install gcc # Used to manipulate serverconfig.xml apt-get install xmlstarlet # 32-bit library apt-get install lib32stdc++6 # Required by SteamCmd (might be included with lib32stdc++6) apt-get install lib32gcc1 mkdir -p /opt/sdtdvan/templates mkdir -p /opt/sdtdm...