H
Hoelsch
Jungspund
Also folgendes:
Ich hab ein hlds Startscript. Das ist alles schön und gut. So. Das hab ich nun umgeschrieben für HLTV. Dachte ich auf jeden Fall. Aber wenn ich das dann per ./cs5 start (so heißt die Datei) ausführe, kommt, dass er den startet, aber wenn ich dann per screen reingehen will, sagt er mir, dass kein screen vorhanden ist. Und der HLTV Server wird auch nicht gestartet (logischerweise).
Hier mal das Script:
Ich verstehe das nicht. Denn wenn ich den Befehl (./hltv +connect 85.XX.XXX.XXX:27010 -port 27025 +exec hltv.cfg) ohne screen ausführe funktioniert alles wunderbar. Was mache ich da falsch?
Viele Dank schon mal!
MfG Hoelsch
Ich hab ein hlds Startscript. Das ist alles schön und gut. So. Das hab ich nun umgeschrieben für HLTV. Dachte ich auf jeden Fall. Aber wenn ich das dann per ./cs5 start (so heißt die Datei) ausführe, kommt, dass er den startet, aber wenn ich dann per screen reingehen will, sagt er mir, dass kein screen vorhanden ist. Und der HLTV Server wird auch nicht gestartet (logischerweise).
Hier mal das Script:
Code:
#!/bin/sh
#
# Start the Counter-Strike dedicated server.
#
# AUTHORS :
#
# Julien Escario ( pandemik@azilog.net )
# &
# Cedric Rochat ( crochat@younics.org )
#
# ===========================================
#
# What you need:
#
# Linux :)
# awk
# screen
# the hlds_l & cstrike-files
#
# How to use:
#
# Edit the DIR-Var to fit your system (just contains the path to the dir that contains hlds_run)
# Edit the PARAMS-Var to fit your needs
# - standard is startup as LAN-server
#
# When this is done, copy the file to /etc/rc.d/init.d (or whereever your system stores the
# scripts for starting the services
# Now you can link the script to your runlevel-dir, here's an example for runlevel 3:
# ln -s /etc/rc.d/init.d/hlds /etc/rc.d/rc3.d/S90hlds
# ln -s /etc/rc.d/init.d/hlds /etc/rc.d/rc3.d/K50hlds
#
# Or use it manualy like:
# /etc/rc.d/init.d/hlds start
# /etc/rc.d/init.d/hlds stop
#
# How to see the server-console:
#
# Just type in: screen -r cstrike
# More info about screen can be found by typing "man screen" or using this nice link
# http://server.counter-strike.net/help/linuxscreen.html
#
# If you don't want to start the server as root you have to change this:
# add the var CS_USER and uncomment it
# change the lines at the "start-block"
#
# You must be logged in as this user to re-attach the screen!
#
# DOC by jwm (jwm@counter-strike.de)
clear
# Edit and uncomment it to run the server as non-root
# CS_USER="jwm"
PATH=/bin:/usr/bin:/sbin:/usr/sbin
# # DON'T FORGET TO CHANGE THE PATH TO YOUR NEEDS!
DIR=/home/server/server1
DAEMON=$DIR/hltv
# LAN-server:
#PARAMS="-game cstrike -nomaster -insecure +sv_lan 1 +maxplayers 16 +map de_dust"
# Internet-server:
PARAMS="+connect 85.XX.XXX.XXX:27010 -port 27025 +exec hltv.cfg"
NAME=hltv
DESC="[nCSo] HLTV"
case "$1" in
start)
echo "Starting $DESC: $NAME"
if [ -e $DIR ];
then
cd $DIR export LD_LIBRARY_PATH=$DIR
# Change the lines for running as non-root!
# su $CS_USER - -c "screen -d -m -S $NAME $DAEMON $PARAMS"
screen -A -m -d -S $NAME export LD_LIBRARY_PATH=$DIR $DAEMON $PARAMS
else echo "No such directory: $DIR!"
fi
;;
stop)
if [[ `screen -ls |grep $NAME` ]]
then
echo -n "Stopping $DESC: $NAME"
kill `screen -ls |grep $NAME |awk -F . '{print $1}'|awk '{print $1}'`
echo " ... done."
else
echo "Coulnd't find a running $DESC"
fi
;;
restart)
if [[ `screen -ls |grep $NAME` ]]
then
echo -n "Stopping $DESC: $NAME"
kill `screen -ls |grep $NAME |awk -F . '{print $1}'|awk '{print $1}'`
echo " ... done."
else
echo "Coulnd't find a running $DESC"
fi
echo -n "Starting $DESC: $NAME"
cd $DIR
screen -d -m -S $NAME $DAEMON $PARAMS
echo " ... done."
;;
status)
# Check whether there's a "hlds" process
# if "checkproc" is installed, you can use this:
# checkproc $DIR/hlds_run && echo "CS-Server RUNNING" || echo "CS-Server NOT RUNNING"
# (thx to commander)
ps aux | grep -v grep | grep hlds_r > /dev/null
CHECK=$?
[ $CHECK -eq 0 ] && echo "HLDS is UP" || echo "HLDS is DOWN"
;;
*)
echo "Usage: $0 {start|stop|status|restart}"
exit 1
;;
esac
exit 0
Viele Dank schon mal!
MfG Hoelsch