Server starten ( to many levels of smybolic links )

10/16/2013 17:27 ask4metin#1
PHP Code:
l134# cd /home && sh start.sh
/homeToo many levels of symbolic links
PHP Code:
l134# cd /home
/homeToo many levels of symbolic links
Bei beiden Eingabe versuchen Klappt es nicht .

Die Home Verknüpfung ist direkt auf der ersten seite bei usr var etc. wieso klappt der Befehl nicht ?
10/16/2013 17:35 kstmr#2
look like you are a new one

PHP Code:
cd /home && sh start.sh 
is wrong
it like this
PHP Code:
cd /usr/home/game && sh start.sh 
if you have a shotcut of home use this
PHP Code:
cd /home/game && sh start.sh 
10/16/2013 17:43 ask4metin#3
Quote:
Originally Posted by kstmr View Post
look like you are a new one

PHP Code:
cd /home && sh start.sh 
is wrong
it like this
PHP Code:
cd /usr/home/game && sh start.sh 
if you have a shotcut of home use this
PHP Code:
cd /home/game && sh start.sh 
yes i am new^^

If i use cd /usr/home/game && sh start.sh


PHP Code:
 Die Datenbank wurde gestartet.
 
Startet den Loginserver ..
env: ./authNo such file or directory
 Der Loginserver wurde gestartet
[0m
 Starte game99_1 
..
env: ./gameNo such file or directory
 game99 Core 1 wurde gestartet
.
 
Starte game99_2 ..
env: ./gameNo such file or directory
 game99 Core 2 wurde gestartet
.
 
Starte game99_3 ..
env: ./gameNo such file or directory
 game99 Core 3 wurde gestartet
.
 
Starte game99_4 .. 
and if I use cd /home && sh start.sh there is the same problem which i did in the top descripe ...
10/16/2013 17:45 xCPx#4
it tells you you made a simbolic link to a simbolic link

For example:
/home points to /usr/home/ which points to /usr/home/game
etc
10/16/2013 17:52 ask4metin#5
Quote:
Originally Posted by xCPx View Post
it tells you you made a simbolic link to a simbolic link

For example:
/home points to /usr/home/ which points to /usr/home/game
etc
I made a link for the home folder. That link is on the same page with usr var etc. and normally i thought it should work now with cd /home && sh start.sh but it doesn`t work -.-.