]> arthur.barton.de Git - ngircd-alex.git/blob - INSTALL
Updated documentation.
[ngircd-alex.git] / INSTALL
1
2                      ngIRCd - Next Generation IRC Server
3
4                       (c)2001-2003 by Alexander Barton,
5                     alex@barton.de, http://www.barton.de/
6
7                ngIRCd is free software and published under the
8                    terms of the GNU General Public License.
9
10                                 -- INSTALL --
11
12                          
13
14 I. Upgrade Information
15 ~~~~~~~~~~~~~~~~~~~~~~
16
17 Differences to version 0.6.x
18
19 - Some options of the configure script have been renamed:
20     --disable-syslog  ->  --without-syslog
21     --disable-zlib    ->  --without-zlib
22   Please call "./configure --help" to review the full list of options!
23
24 Differences to version 0.5.x
25
26 - Starting with version 0.6.0, other servers are identified using asynchronous
27   passwords: therefore the variable "Password" in [Server]-sections has been
28   replaced by "MyPassword" and "PeerPassword".
29
30 - New configuration variables, section [Global]: MaxConnections, MaxJoins
31   (see example configuration file "doc/sample-ngircd.conf"!).
32
33
34 II. Standard Installation
35 ~~~~~~~~~~~~~~~~~~~~~~~~~
36
37 ngIRCd is developed for UNIX-based systems, which means that the installation
38 on modern UNIX-like systems that are supported by GNU autoconf and GNU
39 automake ("configure") should be no problem.
40
41 The normal installation procedure after getting (and expanding) the source
42 files (using a distribution archive or CVS) is as following:
43
44   1) ./autogen.sh       [only necessary when using CVS]
45   2) ./configure
46   3) make
47   4) make install
48
49
50 1): "autogen.sh"
51
52 The first step, autogen.sh, is only necessary if the configure-script isn't
53 already generated. This never happens in official ("stable") releases in
54 tar.gz-archives, but when using CVS.
55
56 This step is therefore only interesting for developers.
57
58 autogen.sh produces the Makefile.in's, which are necessary for the configure
59 script itself, and some more files for make. To run autogen.sh you'll need
60 GNU autoconf and GNU automake (use recent versions! autoconf 2.53 and
61 automake 1.6.1 are known to work).
62
63 Again: "end users" do not need this step!
64
65
66 2): "./configure"
67
68 The configure-script is used to detect local system dependencies.
69
70 In the perfect case, configure should recognise all needed libraries, header
71 files and so on. If this shouldn't work, "./configure --help" shows all
72 possible options.
73
74 In addition, you can pass some command line options to "configure" to enable
75 and/or disable some features of ngIRCd. All these options are shown using
76 "./configure --help", too.
77
78
79 3): "make"
80
81 The make command uses the Makefiles produced by configure and compiles the
82 ngIRCd daemon.
83
84
85 4): "make install"
86
87 Use "make install" to install the server and a sample configuration file on
88 the local system. Normally, root privileges are necessary to complete this
89 step. If there is already an older configuration file present, it won't be
90 overwritten.
91
92 This files will be installed by default:
93
94 - /usr/local/sbin/ngircd: executable server
95 - /usr/local/etc/ngircd.conf: sample configuration (if not already present)
96
97
98 II. Useful make-targets
99 ~~~~~~~~~~~~~~~~~~~~~~~
100
101 The Makefile produced by the configure-script contains always these useful
102 targets:
103
104  - clean: delete every product from the compiler/linker
105    next step: -> make
106
107  - distclean: the above plus erase all generated Makefiles
108    next step: -> ./configure
109
110  - maintainer-clean: erase all automatic generated files
111    next step: -> ./autogen.sh
112
113
114 III. Sample configuration file ngircd.conf
115 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
116
117 In the sample configuration file, there are comments beginning with "#" OR
118 ";" -- this is only for the better understanding of the file.
119
120 The file is separated in four blocks: [Global], [Operator], [Server], and
121 [Channel].
122
123 In the [Global] section, there is the main configuration like the server
124 name and the ports, on which the server should be listening. IRC operators
125 of this server are defined in [Operator] blocks. [Server] is the section
126 where server links are configured. And [Channel] blocks are used to
127 configure pre-defined ("persistent") IRC channels.
128
129 The meaning of the variables in the configuration file is explained in the 
130 "doc/sample-ngircd.conf", which is used as sample configuration file in
131 /usr/local/etc after running "make install" (if you don't already have one)
132 and in the "ngircd.conf" manual page.
133
134
135 IV. Command line options
136 ~~~~~~~~~~~~~~~~~~~~~~~~
137
138 These parameters could be passed to the ngIRCd:
139
140 -f, --config <file>
141         The daemon uses the file <file> as configuration file rather than
142         the standard configuration /usr/local/etc/ngircd.conf.
143
144 -n, --nodaemon
145         ngIRCd should be running as a foreground process.
146
147 -p, --passive
148         Server-links won't be automatically established.
149
150 --configtest
151         Reads, validates and dumps the configuration file as interpreted
152         by the server. Then exits.
153
154 Use "--help" to see a short help text describing all available parameters
155 the server understands, with "--version" the ngIRCd shows its version
156 number. In both cases the server exits after the output.
157
158
159 -- 
160 $Id: INSTALL,v 1.15 2003/03/23 23:13:15 alex Exp $