Jump to content

Recommended Posts

Posted

Hola  /bo

 

Tengo problemas al tratar de compilar  /hum

 

Me muestra el siguiente error

 

Alguna idea

 

SO: Centos 6.5 64

Emulador: rAthena

 

Gracias

 

/no1

post-28350-0-09831300-1408418911_thumb.png

  • 2 weeks later...
Posted

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 ejemplo

chmod777 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

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...