Hello, i am show you how to get it for free.
Step 1. Site with promo codes for free vps/vds,test period 1 month.
Go to http://poiskvps.ru/sale.php
and check for free servers unix/linux/bsd for one month
Step 2. Activate your packet on system bilmanager. and get ip address , and root password.
and use your soft to connect via ssh, try to putty on win http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html.
Step 3. Steam cmd way .i prefer ubuntu for this
3.1 apt-get install lib32gcc1 #for x86 libs
3.2 dont run as root steam client on server
adduser steam
su steam
mkdir /home/steam/steamcmd
cd /home/steam/steamcmd
wget http://media.steampowered.com/installer/steamcmd_linux.tar.gz
tar -xvzf steamcmd_linux.tar.gz
cd /home/steam/steamcmd
./steamcmd.sh
# if you get error ./steamcmd.sh: line 29: /home/steam/steamcmd/linux32/steamcmd: No such file
*** run this as root apt-get install lib32gcc1***
3.3 steam client
./steamcmd.sh +login anonymous +force_install_dir ../jaid_srv +app_update 232250 +quit
# done exit
3.4 Config your server for etf2l configs and wl
cd your server foldier
cd /home/steam/jaid_srv/tf/cfg
wget http://etf2l.org/configs/etf2l_configs_extra.zip
unzip etf2l_configs_extra.zip
cd ../maps
wget http://fakkelbrigade.eu/maps/koth_ultiduo_r_b7.bsp #or your map from http://fakkelbrigade.eu/maps/
cd ../cfg
nano server.cfg
#(http://pastebin.com/M5UNUMdR)
Step 4. all done to run your server with background without screen programm
./srcds_run -game tf +map koth_ultiduo_r_b7 &
# <--- its my comment dont copy this
Alex S. 06.08.2014
In next guide i show how to improve perfomance on server with custom lowlatency kernels cya.
#for De
In diesem Haidee gebloggt ich darüber, wie Sie eine kostenlose Server zu erhalten und stellen Sie es auf Ubuntu
#for Ru
В это гайде я расказываю , как получить бесплатно сервер и настроить это, на ubuntu.
#for Fr
Dans ce Haydée j'ai blogué sur la façon d'obtenir un serveur gratuit et mis en place sur ubuntu
P.S Thx for improved users.
Step 5. Im proved settings,
1.1 You need download all maps to a server from fakkelbrigade
su steam
cd ~/jaid_srv/tf
wget -r -np -nH –cut-dirs=1 -R index.html http://fakkelbrigade.eu/maps
http://s4.postimg.org/r9bzkv8rh/image.jpg
now we need optioanl install tftrue and ac plugins
wget http://tftrue.esport-tools.net/TriggerBotDetector.zip && unzip TriggerBotDetector.zip
wget http://tftrue.esport-tools.net/TFTrue.zip && unzip TFTrue.zip
nano cfg/server.cfg
#add this settting for example
tftrue_freezecam 0
tftrue_maxfov 90
tftrue_no_hats 1
tftrue_no_misc 1
tftrue_no_action 1
tftrue_restorestats 1
tftrue_logs_includebuffs 1
tftrue_logs_accuracy 1
tftrue_logs_apikey #your api from http://logs.tf/uploader
sv_downloadurl "http://fakkelbrigade.eu"
sv_allowdownload 1
sv_allowupload 1
Step 6. Tcp settings
add this to /etc/sysctl.conf
# increase TCP max buffer size settable using setsockopt()
net.core.rmem_max = 16777216
net.core.wmem_max = 16777216
# increase Linux autotuning TCP buffer limit
net.ipv4.tcp_rmem = 4096 87380 16777216
net.ipv4.tcp_wmem = 4096 65536 16777216
# increase the length of the processor input queue
net.core.netdev_max_backlog = 30000
# recommended default congestion control is htcp
net.ipv4.tcp_congestion_control=htcp
# recommended for hosts with jumbo frames enabled
net.ipv4.tcp_mtu_probing=1
add this to /etc/rc.local
/sbin/ifconfig ethN txqueuelen 10000