Posted August 6, 201311 yr comment_13008 1) Download Latest version of RevEmu for Windows or LinuxI decide make mirror for RevEmu on RGhost filehosting, because they have unlimited download speed without IP restrict and waiting. http://rghost.net/private/47435401/c781e82db59da097f1308ab2aa6f9fd5 2) Install RevEmu (Counter-Strike: Source Linux Dedicated Server)1) Extract contents of latest Linux RevEmu archive2) Go into ./bin folder and rename file steamclient_2.13.so or steamclient_2.11.1.so to steamclient.so (If steamclient_2.13.so will not work try steamclient_2.11.1.so.)3) Go into root folder and open ./rev.ini file and you can make changes here.For example, here is my rev.ini file which I use for my server:Code:[steamclient]AllowUnknown = FalseClientDLL = ./bin/steamclient_valve.soLogging = FalsePlayerName = SteamPlayer4) Connect to your server FTP and go to ./css/bin folder5) Rename file steamclient.so to steamclient_valve.so6) Now upload content Linux RevEmu (with changes at steps 2 and 3) into ./css folder7) Restart server and try connect with Counter-Strike: Source NonSteam client NOTE: This is a Tuto made by ev-crew.info member.
August 19, 201311 yr comment_13184 I will follow this tutorial but my server overload and can't connect to server. I will run but failedroot@vps [~/css_server/css/pnn_server]# ./srcds_run -game cstrike -console -usercon +game_type 0 +game_mode 0 +mapgroup mg_bomb +map de_dust ************** WARNING ***************Running the dedicated server as rootis highly discouraged. It is generallyunnecessary to use root privileges toexecute the dedicated server.************************************** The server will continue to launch in 10 seconds\rThe server will continue to launch in 9 seconds\rThe server will continue to launch in 8 seconds\rThe server will continue to launch in 7 seconds\rThe server will continue to launch in 6 seconds\rThe server will continue to launch in 5 seconds\rThe server will continueto launch in 4 seconds\rThe server will continue to launch in 3 seconds\rThe server will continue to launch in 2 seconds\rThe server will continue to launch in1 seconds\rAuto detecting CPUUsing default binary: ./srcds_linuxServer will auto-restart if there is a crash.Using breakpad minidump systemUsing breakpad crash handler Console initialized.Loaded 1335 VPK file hashes from /root/css_server/css/pnn_server/cstrike/cstrike_pak.vpk for pure server operation.Loaded 1335 VPK file hashes from /root/css_server/css/pnn_server/cstrike/cstrike_pak.vpk for pure server operation.Loaded 1218 VPK file hashes from /root/css_server/css/pnn_server/hl2/hl2_textures.vpk for pure server operation.Loaded 574 VPK file hashes from /root/css_server/css/pnn_server/hl2/hl2_sound_vo_english.vpk for pure server operation.Loaded 383 VPK file hashes from /root/css_server/css/pnn_server/hl2/hl2_sound_misc.vpk for pure server operation.Loaded 432 VPK file hashes from /root/css_server/css/pnn_server/hl2/hl2_misc.vpk for pure server operation.Loaded 5 VPK file hashes from /root/css_server/css/pnn_server/platform/platform_misc.vpk for pure server operation.Game_srv.so loaded for "Counter-Strike: Source"Setting breakpad minidump AppID = 240Forcing breakpad minidump interfaces to loaddlopen failed trying to load:/root/.steam/sdk32/steamclient.sowith error:/root/.steam/sdk32/steamclient.so: cannot open shared object file: No such fileor directoryLooking up breakpad interfaces from steamclientmaxplayers set to 32dlopen failed trying to load:/root/.steam/sdk32/steamclient.sowith error:/root/.steam/sdk32/steamclient.so: cannot open shared object file: No such fileor directoryLooking up breakpad interfaces from steamclientdlopen failed trying to load:/root/.steam/sdk32/steamclient.sowith error:/root/.steam/sdk32/steamclient.so: cannot open shared object file: No such fileor directoryLooking up breakpad interfaces from steamclientdlopen failed trying to load:/root/.steam/sdk32/steamclient.sowith error:/root/.steam/sdk32/steamclient.so: cannot open shared object file: No such fileor directoryLooking up breakpad interfaces from steamclientUnknown command "r_decal_cullsize"Unknown command "game_type"Unknown command "game_mode"Unknown command "mapgroup"Network: IP xxxxx, mode MP, dedicated Yes, ports 27015 SV / 27005 CLConVarRef room_type doesn't point to an existing ConVarExecuting dedicated server config file server.cfgUsing map cycle file cfg/mapcycle.txt.Set motd from file 'cfg/motd.txt'Set motd_text from file 'cfg/motd_text.txt'Initializing Steam libraries for secure Internet server[s_API FAIL] SteamAPI_Init() failed; SteamAPI_IsSteamRunning() failed.
August 22, 201311 yr Author comment_13197 I will follow this tutorial but my server overload and can't connect to server. I will run but failedHow do you startup the serveR ? Like this ? To "renice" srcds under Linux we need to write the process id to a pid file. This is the number that is assigned to the srcds process. We will add this to the command line: Command(s): ./srcds_run ... -pidfile srcds.pid When you closed srcds and added this to the command line, please log in as root. Now we will use a tool that tells the system to ensure the process is at the highest priority every 5 minutes. (Otherwise as soon srcds crashes the priority would go back to normal)Type crontab -e Command(s): */5 * * * * renice -20 `cat /home/yoursrcdspath/srcds.pid` >/dev/null 2>&1 Now press CTRL-X Replace /home/yoursrcdspath/ in the example with the path of your srcds server. (Without the moddir) This should make your server alot smoother, even at large maps. The price is however, this is the application that gets the best performance and other applications might suffer. Good luck! ~Resource : http://www.srcds.com/db/engine.php?subaction=showfull&id=1103579727&archive=
August 22, 201311 yr Author comment_13198 How do you startup the serveR ? Like this ? To "renice" srcds under Linux we need to write the process id to a pid file. This is the number that is assigned to the srcds process. We will add this to the command line: Command(s):./srcds_run ... -pidfile srcds.pidWhen you closed srcds and added this to the command line, please log in as root. Now we will use a tool that tells the system to ensure the process is at the highest priority every 5 minutes. (Otherwise as soon srcds crashes the priority would go back to normal)Type crontab -e Command(s):*/5 * * * * renice -20 `cat /home/yoursrcdspath/srcds.pid` >/dev/null 2>&1Now press CTRL-X Replace /home/yoursrcdspath/ in the example with the path of your srcds server. (Without the moddir) This should make your server alot smoother, even at large maps. The price is however, this is the application that gets the best performance and other applications might suffer. Good luck! ~Resource : http://www.srcds.com/db/engine.php?subaction=showfull&id=1103579727&archive= When You're done, post your server ;) so we can play with you. SORRY FOR THE DOUBLE POST! And ANOTHER thing, dont run the server as ~root~,in windows when You run it as ADMIN,the server doesnt start, Edited August 22, 201311 yr by KIILL
November 5, 201311 yr comment_14459 Well, about srcds for csgo, i have this problem too. I don't know how to solve it, even when i delete and reinstall it again, still met this problem. Maybe you should try using Windows.
November 6, 201311 yr Author comment_14480 Well, about srcds for csgo, i have this problem too. I don't know how to solve it, even when i delete and reinstall it again, still met this problem. Maybe you should try using Windows.I'll be setting up a Zombie server today, but i'll see if i can update this trash of thread. EDIT: BTW, i'll try on both Linux(Xubuntu) And Windows(8). OMG! I NEED TO CHANGE THE ISP! Edited November 14, 201311 yr by KIILL
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.