Jump to content

Featured Replies

Posted
comment_13008

1) Download Latest version of RevEmu for Windows or Linux
I 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 archive
2) 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 = False
ClientDLL = ./bin/steamclient_valve.so
Logging = False
PlayerName = SteamPlayer
4) Connect to your server FTP and go to ./css/bin folder
5) Rename file steamclient.so to steamclient_valve.so
6) Now upload content Linux RevEmu (with changes at steps 2 and 3) into ./css folder
7) Restart server and try connect with Counter-Strike: Source NonSteam client

 

 

NOTE: This is a Tuto made by ev-crew.info member.

 
  • 2 weeks later...
comment_13184

I will follow this tutorial but my server overload and can't connect to server.

 

I will run but failed

root@vps [~/css_server/css/pnn_server]# ./srcds_run -game cstrike -console -user

con +game_type 0 +game_mode 0 +mapgroup mg_bomb +map de_dust
 
 
************** WARNING ***************
Running the dedicated server as root
is highly discouraged. It is generally
unnecessary to use root privileges to
execute the dedicated server.
**************************************
 
 
The server will continue to launch in 10 seconds\rThe server will continue to la
unch in 9 seconds\rThe server will continue to launch in 8 seconds\rThe server w
ill continue to launch in 7 seconds\rThe server will continue to launch in 6 sec
onds\rThe server will continue to launch in 5 seconds\rThe server will continue
to launch in 4 seconds\rThe server will continue to launch in 3 seconds\rThe ser
ver will continue to launch in 2 seconds\rThe server will continue to launch in
1 seconds\rAuto detecting CPU
Using default binary: ./srcds_linux
Server will auto-restart if there is a crash.
Using breakpad minidump system
Using 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_texture
s.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_mi
sc.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 = 240
Forcing breakpad minidump interfaces to load
dlopen failed trying to load:
/root/.steam/sdk32/steamclient.so
with error:
/root/.steam/sdk32/steamclient.so: cannot open shared object file: No such file
or directory
Looking up breakpad interfaces from steamclient
maxplayers set to 32
dlopen failed trying to load:
/root/.steam/sdk32/steamclient.so
with error:
/root/.steam/sdk32/steamclient.so: cannot open shared object file: No such file
or directory
Looking up breakpad interfaces from steamclient
dlopen failed trying to load:
/root/.steam/sdk32/steamclient.so
with error:
/root/.steam/sdk32/steamclient.so: cannot open shared object file: No such file
or directory
Looking up breakpad interfaces from steamclient
dlopen failed trying to load:
/root/.steam/sdk32/steamclient.so
with error:
/root/.steam/sdk32/steamclient.so: cannot open shared object file: No such file
or directory
Looking up breakpad interfaces from steamclient
Unknown 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 CL
ConVarRef room_type doesn't point to an existing ConVar
Executing dedicated server config file server.cfg
Using 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.

 

  • Author
comment_13197

I will follow this tutorial but my server overload and can't connect to server.

 

I will run but failed

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.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=

  • 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.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=

 

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 by KIILL

  • 2 months later...
  • 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 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.

Guest
Reply to this topic...