In console:
mkdir <pick a name>
cd <name you picked>
wget
http://www.steampowered.com/download/hldsupdatetool.bin
chmod +x hldsupdatetool.bin
./hldsupdatetool.bin
./steam
./steam -command update -game "hl2mp" -dir .
cd ../
unzip <server filename>.zip
mv <server filename> <name you picked>/
you can then make a script for your server to make startups easier (example below is my css server):
vi (or your favorite text editor) serverstart.sh
Quote:
#!/bin/sh
./srcds_run -console -game cstrike -tickrate 100 +fps_max 600 +maxplayers 16 -port 27015 +map de_dust2 +mp_dynamicpricing 0 -autoupdate
|
chmod +x serverstart.sh
you can find command parameters for srcds_run
here