Linux : Compiling howto Mangos

This is a discussion on Linux : Compiling howto Mangos within the Tutorials & Stuff! forums, part of the KP's Network Forum category; Some basic first time only steps : Code: sudo apt-get install subversion dpkg-dev make autoconf libstdc++-dev libstdc++ g++ libc6-dev gcc ...

Try Our customized MMoRPG experience, using World of Warcraft Client to connect
  

Reply

 

LinkBack Thread Tools
Old January 3rd, 2007   4 links from elsewhere to this Post. Click to view. #1 (permalink)
KingPin
Da Boss!
Starship Legend Champion
 
KingPin's Avatar
 
Join Date: Apr 2004
Location: Brooklyn, NY
Posts: 7,537
Thanks: 53
Thanked 72 Times in 50 Posts
Blog Entries: 24
My Mood: Lurking
KingPin KingPin o.OKingPin KingPin o.OKingPin KingPin o.O
KingPin KingPin o.OKingPin KingPin o.OKingPin KingPin o.OKingPin KingPin o.OKingPin KingPin o.OKingPin KingPin o.OKingPin KingPin o.OKingPin KingPin o.OKingPin KingPin o.OKingPin KingPin o.OKingPin KingPin o.O
Linux : Compiling howto Mangos

Some basic first time only steps :

Code:
sudo apt-get install subversion dpkg-dev make autoconf libstdc++-dev libstdc++ g++ libc6-dev gcc
this will get and install subversion along with the other packages. remember you might need more packages.

Code:
cd ~
mkdir code
mkdir raw
mkdir compiled
I make separate dirs for code and compiled mangos. once I'm satisfied I move the compiled binaries then they get moved to production environment.

Steps you need to perform every time :

Code:
svn checkout https://svn.sourceforge.net/svnroot/mangos/trunk ~/raw
Retrieve the latest updates from mangos svn.

Code:
cd ~/raw
Code:
./configure --prefix=~/code/compiled --with-python --enable-cli --sysconfdir=~/code/compiled/etc --datadir=~/code/compiled/data
the above does NOT include remote admin but does include command line interface since we are using Linux which provides us with SSH and screen so we can admin the server just like we were on the console no matter where we are as long as we configure SSH also fix the paths for your user if you so desire.

Code:
make
just type that and wait for it to finish. feel free to go get some coffee.

Code:
make install
type that once make is done and wait for this to finish. finished your coffee i see o.O

Code:
cd ../compiled
go into the compiled folder and take a look at your handy work. you can move it from here to whereever you want now or package it up and share with others on the mangos site

I will be posting a tutorials soon that includes scriptdev.

Heaven doesn't want me, and hell is afraid I'll take over.NO SUPPORT VIA PM.

KingPin is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old January 24th, 2007   #2 (permalink)
KingPin
Da Boss!
Starship Legend Champion
 
KingPin's Avatar
 
Join Date: Apr 2004
Location: Brooklyn, NY
Posts: 7,537
Thanks: 53
Thanked 72 Times in 50 Posts
Blog Entries: 24
My Mood: Lurking
KingPin KingPin o.OKingPin KingPin o.OKingPin KingPin o.O
KingPin KingPin o.OKingPin KingPin o.OKingPin KingPin o.OKingPin KingPin o.OKingPin KingPin o.OKingPin KingPin o.OKingPin KingPin o.OKingPin KingPin o.OKingPin KingPin o.OKingPin KingPin o.OKingPin KingPin o.O
Re: Linux : Compiling howto Mangos

if you get errors like
Code:
error while loading shared libraries: libZThread-2.3.2.so.0: cannot open shared object file: No such file or directory
and you are too lazy to search for the answer... do the following :
Code:
ln -vs /path to mangos/lib/* /usr/local/lib
ln -vs /path to mangos/lib/* /usr/lib
ln -vs /path to mangos/lib/* /usr/bin/
Last edited by KingPin; January 24th, 2007 at 14:20..
KingPin is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old January 25th, 2007   #3 (permalink)
Da ''New'' Boss
Points: 2,196, Level: 13 Points: 2,196, Level: 13 Points: 2,196, Level: 13
Activity: 0% Activity: 0% Activity: 0%
 
Dakota911's Avatar
 
Join Date: Jan 2007
Location: Usa
Posts: 2,091
Thanks: 0
Thanked 0 Times in 0 Posts
Dakota911 is an unknown quantity at this point
Re: Linux : Compiling howto Mangos

*clap*
good job
Dakota911 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old February 14th, 2007   #4 (permalink)
Private
Points: 787, Level: 7 Points: 787, Level: 7 Points: 787, Level: 7
Activity: 0% Activity: 0% Activity: 0%
 
Join Date: Feb 2007
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
remfarkas is an unknown quantity at this point
Thx, man that was a great help ^^ ur forum is great!
Last edited by remfarkas; February 15th, 2007 at 03:47.. Reason: new info
remfarkas is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old February 28th, 2007   #5 (permalink)
Private
Points: 760, Level: 7 Points: 760, Level: 7 Points: 760, Level: 7
Activity: 0% Activity: 0% Activity: 0%
 
Join Date: Feb 2007
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Haka is an unknown quantity at this point
Error with SVN

Hi if I use this: svn checkout https://svn.sourceforge.net/svnroot/mangos/trunk ~/raw

After this finished some file is missing...

Eg: configure, makefile.in from every folder?

Do you know why?
Haka is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old March 1st, 2007   #6 (permalink)
KingPin
Da Boss!
Starship Legend Champion
 
KingPin's Avatar
 
Join Date: Apr 2004
Location: Brooklyn, NY
Posts: 7,537
Thanks: 53
Thanked 72 Times in 50 Posts
Blog Entries: 24
My Mood: Lurking
KingPin KingPin o.OKingPin KingPin o.OKingPin KingPin o.O
KingPin KingPin o.OKingPin KingPin o.OKingPin KingPin o.OKingPin KingPin o.OKingPin KingPin o.OKingPin KingPin o.OKingPin KingPin o.OKingPin KingPin o.OKingPin KingPin o.OKingPin KingPin o.OKingPin KingPin o.O
mangos is going through cleanups and compiling broken, check the revision logs at : http://wow.kpsforum.com:81/mangos_revisions.xml
KingPin is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old March 1st, 2007   #7 (permalink)
Private
Points: 760, Level: 7 Points: 760, Level: 7 Points: 760, Level: 7
Activity: 0% Activity: 0% Activity: 0%
 
Join Date: Feb 2007
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Haka is an unknown quantity at this point
Hmmm

AmI looser?

I run svn co .......mangos

And some file missing.... I hace not contigure, jats configure.ac

I can nit run ./configure, becouse it is not downloaded..

Any idea?
Haka is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Tags
wow, mmorpg, mangos, linux, howto, framework, compiling


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


LinkBacks (?)

LinkBack to this Thread: http://www.kpsforum.com/tutorials-stuff/8521-linux-compiling-howto-mangos.html

Posted By For Type Date
Mangos This thread Refback March 2nd, 2009 05:10
Fedora Linux :: ?esk forum :: Mangos This thread Refback June 3rd, 2008 06:51
Fedora Linux :: ?esk forum :: Mangos This thread Refback May 28th, 2008 14:20
Fedora Linux :: ?esk forum :: Mangos This thread Refback May 25th, 2008 15:06


All times are GMT -4. The time now is 02:52.

no new posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89