Samuel Posted August 19, 2014 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 1 Reputation: 0 Joined: 08/19/14 Last Seen: September 21, 2014 Share Posted August 19, 2014 Hola Tengo problemas al tratar de compilar Me muestra el siguiente error Alguna idea SO: Centos 6.5 64 Emulador: rAthena Gracias Quote Link to comment Share on other sites More sharing options...
Zikoziz Posted September 2, 2014 Group: Members Topic Count: 61 Topics Per Day: 0.01 Content Count: 208 Reputation: 16 Joined: 12/19/13 Last Seen: 10 hours ago Share Posted September 2, 2014 Hola mira intenta primero usa ./configure Make clean Make sql Si no te deja usarlo intenta agregando esto---> chmod 777 usalo antes de utilziar el comando ejemplochmod777 make clean --> lo usas solo una ves luego te tomara el comando, si los problemas sigen y ya utilizaste los chmod777 , abres tu archivo athena-start y lo remplazas por esto: #!/bin/sh # athena starting script by rowla # modified by [email protected] (NL101541) PATH=./:$PATH L_SRV=login-server C_SRV=char-server M_SRV=map-server print_start() { # more << EOF echo "Athena Starting..." echo " (c) 2003 Athena Project" echo " modified by [email protected]" echo "" #echo "Debug informations will appear," #echo "since this is a test release." #echo "" echo "checking..." #EOF } check_files() { for i in ${L_SRV} ${C_SRV} ${M_SRV} do if [ ! -f ./$i ]; then echo "$i does not exist, or can't run." echo "Stop. Check your compile." exit 1; fi done # more << EOF echo "Check complete." echo "Looks good, a nice Athena!" #EOF } case $1 in 'start') print_start check_files exec .{L_SRV}& exec .{C_SRV}& exec .{M_SRV}& echo "Now Started Athena." ;; 'stop') ps ax | grep -E "${L_SRV}|${C_SRV}|${M_SRV}" | awk '{print $1}' | xargs kill ;; 'restart') $0 stop $0 start ;; *) echo "Usage: athena-start { start | stop | restart }" ;; esac Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.