brauche hilfe bitte

06/15/2013 22:26 PlayaStylee#1
unszwar findet der bei mir die auth datei nicht und die game datei

Quote:
/usr/home/game/channel1/core von 1 bis 5
/usr/home/game/channel2/core von 1 bis 5
/usr/home/game/channel3/core von 1 bis 5
/usr/home/game/channel4/core1
/usr/home/game/channel4/core2
/usr/home/game/channel4/core3
/usr/home/game/game99/core von 1 bis 5
und ich weiß nicht ob hier auch noch was rein kommt
/usr/home/game/g1/db ob hier auch game datei rein kommt weiß ich nicht
/usr/home/game/g1/auth ob hier auch game datei rein kommt weiß ich nicht

mein start script sicht so aus


PHP Code:
#!/bin/sh
echo "Starte Server..."
cd /usr/home/game/g1/db && ./db sleep 4
cd 
/usr/home/game/g1/auth && ./auth sleep 4
cd 
/usr/home/game/channel1/core1 && ./game sleep 2
cd 
/usr/home/game/channel1/core2 && ./game sleep 2
cd 
/usr/home/game/channel1/core3 && ./game sleep 2
cd 
/usr/home/game/channel1/core4 && ./game sleep 2
cd 
/usr/home/game/channel1/core5 && ./game sleep 2
cd 
/usr/home/game/channel2/core1 && ./game sleep 2
cd 
/usr/home/game/channel2/core2 && ./game sleep 2
cd 
/usr/home/game/channel2/core3 && ./game sleep 2
cd 
/usr/home/game/channel2/core4 && ./game sleep 2
cd 
/usr/home/game/channel2/core5 && ./game sleep 2
cd 
/usr/home/game/channel3/core1 && ./game sleep 2
cd 
/usr/home/game/channel3/core2 && ./game sleep 2
cd 
/usr/home/game/channel3/core3 && ./game sleep 2
cd 
/usr/home/game/channel3/core4 && ./game sleep 2
cd 
/usr/home/game/channel3/core5 && ./game sleep 2
cd 
/usr/home/game/channel4/core1 && ./game sleep 2
cd 
/usr/home/game/channel4/core2 && ./game sleep 2
cd 
/usr/home/game/channel4/core3 && ./game sleep 2
cd 
/usr/home/game/channel4/core4 && ./game sleep 2
cd 
/usr/home/game/channel4/core5 && ./game sleep 2
cd 
/usr/home/game/game99/core1 && ./game sleep 2
cd 
/usr/home/game/game99/core2 && ./game sleep 2
cd 
/usr/home/game/game99/core3 && ./game sleep 2
cd 
/usr/home/game/game99/core4 && ./game sleep 2
cd 
/usr/home/game/game99/core5 && ./game sleep 2
cd 
..
sleep 2
echo "..... gestartet!" 
06/15/2013 23:29 Coniesan#2
hmm ich denke, selbes Problem wie fast immer:
Code:
cd / && ln -s /usr/home
oder falls dabei eine Fehlermeldung auftritt:
Code:
cd / && rm -rf home && ln -s /usr/home
(achtung! Dabei werden ALLE Dateien im Verzeichnis /home gelöscht!)