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
|
Installing Roxen Challenger 1.2 - the Source distribution
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1. Get the source server package.
2. Issue the command to unpack the archive:
.tar.gz:
If you have GNU tar; "tar xzf Roxen-archive-name"
If you don't have GNU tar:
"gunzip < Roxen-archive-name| tar xf -"
.tar.Z
If you have GNU tar; "tar xzf Roxen-archive-name"
If you don't have GNU tar:
"uncompress < Roxen-archive-name| tar xf -"
.tar
"tar xf Roxen-archive-name"
(where "Roxen-archive-name" is the name of the Roxen archive
file.).
3. Type "cd Roxen_1.2" to change to the new directory. This directory
should contain at the very least four directories:
server (Roxen server source), pike (the Pike intepreter),
extern (misc. programs used by Roxen) and tools (misc tools). See
README for more information about the directory structure.
4. Type ./configure --prefix=<wanted_base_path_for_Roxen>
(defaults to /usr/local, thus placing Roxen in /usr/local/roxen/)
followed by make and make install to build the binaries and copy them
to the correct place.
You can later on move the 'roxen' directory that will be
created when you type 'make install' to anywhere in your
filesystem. Roxen does not keep any absolute paths.
5. If everything worked fine and the compilation is done, type
cd <dir>/server.
6. Start the install script by typing ./install.
7. Answer the simple questions and wait for your client.
9. If everything worked, configure the server, otherwise move on to the
troubleshooting section on the roxen WWW-pages.
Once you have installed the server, consider joining the Roxen
mailinglist (by sending a mail to roxen-request@roxen.com, with
Subject: subscribe).
For more information about Roxen, read the online documentation at
http://www.roxen.com/
----------------------------------------------------------------------------
Example installation session:
bash$ tar xzf Roxen_1.2.tar.gz
bash$ cd Roxen_1.2
bash$ mkdir solaris
bash$ cd solaris
bash$ ../configure --prefix=/usr/www
<Lots and lots of checks...>
bash$ make install
<Lots and lots of compilations>
bash$ cd /usr/www/roxen/server
bash$ ./install
<answer a few questions>
|