[hlds_linux] Left 4 Dead 2 Linux Dedicated Server Updated

2010-07-22 Thread Jason Ruymen
The Linux dedicated server for Left 4 Dead 2 has been updated.  The specific 
changes are:

- Fixed Linux dedicated server crash when path to dedicated server installation 
included uppercase characters

Jason


___
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlds_linux


Re: [hlds_linux] Left 4 Dead 2 Linux Dedicated Server Updated

2010-07-22 Thread D4rKr0W

Il 23/07/2010 00:07, Jason Ruymen ha scritto:

The Linux dedicated server for Left 4 Dead 2 has been updated.  The specific 
changes are:

- Fixed Linux dedicated server crash when path to dedicated server installation 
included uppercase characters

Jason


Thanks for the update and for notifying us through the mailing list.

___
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlds_linux


Re: [hlds_linux] Left 4 Dead 2 Linux Dedicated Server Updated

2010-07-22 Thread Kyle Sanderson
Thank you Jason!

Kyle.

On Thu, Jul 22, 2010 at 3:25 PM, D4rKr0W dark...@dpi-clan.org wrote:
 Il 23/07/2010 00:07, Jason Ruymen ha scritto:

 The Linux dedicated server for Left 4 Dead 2 has been updated.  The
 specific changes are:

 - Fixed Linux dedicated server crash when path to dedicated server
 installation included uppercase characters

 Jason

 Thanks for the update and for notifying us through the mailing list.

 ___
 To unsubscribe, edit your list preferences, or view the list archives,
 please visit:
 http://list.valvesoftware.com/mailman/listinfo/hlds_linux


___
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlds_linux


[hlds_linux] Left 4 Dead 2 Linux Dedicated

2009-11-21 Thread Schlup
Hello all, I'm running a dedicated server with CentOS and trying to get Left
4 Dead2 started.  I have just about everything configured already.  Just
need scripts for start.sh, restart.sh, stop.sh

 

I'll be running the scripts from Webmin which is how I control all of my
game servers.  Any help is greatly appreciated!

 

Thanks,

Schlup

___
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlds_linux


Re: [hlds_linux] Left 4 Dead 2 Linux Dedicated

2009-11-21 Thread Ulrich Block
Just modify the scripts you use for the other gameserver. The srcds_run 
file is the same, the startparameters for l4d2 should be known...

Schlup schrieb:
 Hello all, I'm running a dedicated server with CentOS and trying to get Left
 4 Dead2 started.  I have just about everything configured already.  Just
 need scripts for start.sh, restart.sh, stop.sh

  

 I'll be running the scripts from Webmin which is how I control all of my
 game servers.  Any help is greatly appreciated!

  

 Thanks,

 Schlup

 ___
 To unsubscribe, edit your list preferences, or view the list archives, please 
 visit:
 http://list.valvesoftware.com/mailman/listinfo/hlds_linux

   


___
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlds_linux


Re: [hlds_linux] Left 4 Dead 2 Linux Dedicated

2009-11-21 Thread E3pO
Schlup wrote:
 Hello all, I'm running a dedicated server with CentOS and trying to get Left
 4 Dead2 started.  I have just about everything configured already.  Just
 need scripts for start.sh, restart.sh, stop.sh

  

 I'll be running the scripts from Webmin which is how I control all of my
 game servers.  Any help is greatly appreciated!

  

 Thanks,

 Schlup

 ___
 To unsubscribe, edit your list preferences, or view the list archives, please 
 visit:
 http://list.valvesoftware.com/mailman/listinfo/hlds_linux

   
Not sure what exactally you want, but here is what i use.

SERVER.SH (start.sh):

cd left4dead2
screen -A -m -d -S l4d2 ./srcds_run -console -game left4dead2

KILL.SH(stop.sh):

killall l4d2

RESTART.SH:

kill l4d2
cd left4dead2
screen -A -m -d -S l4d2 ./srcds_run -console -game left4dead2

___
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlds_linux


Re: [hlds_linux] Left 4 Dead 2 Linux Dedicated

2009-11-21 Thread Logan Rogers-Follis
If you are using kill srcds_run and srcds_i486 like I am (for L4D) you 
will need to kill srcds_run and srcds_linux for L4D2 (of course you need 
to make sure you kill it for the right user)

I actually wrote up a quick run-level script (acts as a service in 
linux) that handles all that for me from the command line, but you could 
probably use Webmin to call the service (supports: start, stop, 
restart/reload)

Script:  http://www.tntnetworx.net/?page_id=147
NOTE:  A startserver.sh file (called in my hlds service script) can be 
found at the bottom of http://www.tntnetworx.net/?page_id=500

Logan Rogers-Follis - logan.rogers-fol...@tntnetworx.net
Try New Technology Networx - www.tntnetworx.net
Owner / IT Consultant



Ulrich Block wrote:
 Just modify the scripts you use for the other gameserver. The srcds_run 
 file is the same, the startparameters for l4d2 should be known...

 Schlup schrieb:
   
 Hello all, I'm running a dedicated server with CentOS and trying to get Left
 4 Dead2 started.  I have just about everything configured already.  Just
 need scripts for start.sh, restart.sh, stop.sh

  

 I'll be running the scripts from Webmin which is how I control all of my
 game servers.  Any help is greatly appreciated!

  

 Thanks,

 Schlup

 ___
 To unsubscribe, edit your list preferences, or view the list archives, 
 please visit:
 http://list.valvesoftware.com/mailman/listinfo/hlds_linux

   
 


 ___
 To unsubscribe, edit your list preferences, or view the list archives, please 
 visit:
 http://list.valvesoftware.com/mailman/listinfo/hlds_linux

   

___
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlds_linux


Re: [hlds_linux] Left 4 Dead 2 Linux Dedicated

2009-11-21 Thread sch...@bulletproofnerds.com
How does it know what IP address to use?

-- Sent from my Palm Pre
E3pO wrote:

Schlup wrote:

 Hello all, I'm running a dedicated server with CentOS and trying to get Left

 4 Dead2 started.  I have just about everything configured already.  Just

 need scripts for start.sh, restart.sh, stop.sh



  



 I'll be running the scripts from Webmin which is how I control all of my

 game servers.  Any help is greatly appreciated!



  



 Thanks,



 Schlup



 ___

 To unsubscribe, edit your list preferences, or view the list archives, please 
 visit:

 http://list.valvesoftware.com/mailman/listinfo/hlds_linux



   

Not sure what exactally you want, but here is what i use.



SERVER.SH (start.sh):



cd left4dead2

screen -A -m -d -S l4d2 ./srcds_run -console -game left4dead2



KILL.SH(stop.sh):



killall l4d2



RESTART.SH:



kill l4d2

cd left4dead2

screen -A -m -d -S l4d2 ./srcds_run -console -game left4dead2



___

To unsubscribe, edit your list preferences, or view the list archives, please 
visit:

http://list.valvesoftware.com/mailman/listinfo/hlds_linux


___
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlds_linux


Re: [hlds_linux] Left 4 Dead 2 Linux Dedicated

2009-11-21 Thread Maximilian L.
Google´s full of how to start a SRCDS server incl. assigning IP. :)
A large one is here http://hlds.pl/SRCDS-Start_Stop_Restart
This might also be interesting http://www.earthquake-clan.de/srcds/
And last but not least http://www.srcds.com/

Fo IP use the +ip swich

A full L4D2 command could look like this (forked):

./srcds_run -console -fork 10 -netconport 4 -netconpassword 
MyPass +ip IP -port Port -secure -game left4dead2 +maxplayers 8 
+sv_lan 0 +exec server_##.cfg

 How does it know what IP address to use?

 -- Sent from my Palm Pre
 E3pO wrote:

 Schlup wrote:

   
 Hello all, I'm running a dedicated server with CentOS and trying to get Left
 

   
 4 Dead2 started.  I have just about everything configured already.  Just
 

   
 need scripts for start.sh, restart.sh, stop.sh
 

   

   
  
 

   

   
 I'll be running the scripts from Webmin which is how I control all of my
 

   
 game servers.  Any help is greatly appreciated!
 

   

   
  
 

   

   
 Thanks,
 

   

   
 Schlup
 

   

   
 ___
 

   
 To unsubscribe, edit your list preferences, or view the list archives, 
 please visit:
 

   
 http://list.valvesoftware.com/mailman/listinfo/hlds_linux
 

   

   
   
 

 Not sure what exactally you want, but here is what i use.



 SERVER.SH (start.sh):



 cd left4dead2

 screen -A -m -d -S l4d2 ./srcds_run -console -game left4dead2



 KILL.SH(stop.sh):



 killall l4d2



 RESTART.SH:



 kill l4d2

 cd left4dead2

 screen -A -m -d -S l4d2 ./srcds_run -console -game left4dead2



 ___

 To unsubscribe, edit your list preferences, or view the list archives, please 
 visit:

 http://list.valvesoftware.com/mailman/listinfo/hlds_linux


 ___
 To unsubscribe, edit your list preferences, or view the list archives, please 
 visit:
 http://list.valvesoftware.com/mailman/listinfo/hlds_linux

 __ Information from ESET NOD32 Antivirus, version of virus signature 
 database 4626 (20091120) __

 The message was checked by ESET NOD32 Antivirus.

 http://www.eset.com




   


-- 
Mailing List Conversations - mail...@ml86.de - Please don´t spam :)


___
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlds_linux