]> arthur.barton.de Git - ngircd-alex.git/blob - INSTALL
Fixed some spelling mistakes -- thanks to ispell ;-)
[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-like systems, which means that the installation
38 on modern UNIX-like systems witch 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]. In the [Global] part, there is the main configuration, like the
122 server-name and the ports, on which the server should be listening. In the
123 [Operator] section, the server-operators are defined and [Server] is the
124 section, where the server-links are configured. Use [Channel] blocks to
125 configure pre-defined ("persistent") IRC channels.
126
127 The meaning of the variables in the configuration file is explained in the 
128 "doc/sample-ngircd.conf", which is used as sample configuration file in
129 /usr/local/etc after running "make install" (if you don't already have one).
130
131
132 IV. Command line options
133 ~~~~~~~~~~~~~~~~~~~~~~~~
134
135 These parameters could be passed to the ngIRCd:
136
137 -f, --config <file>
138         The daemon uses the file <file> as configuration file rather than
139         the standard configuration /usr/local/etc/ngircd.conf.
140
141 -n, --nodaemon
142         ngIRCd should be running as a foreground process.
143
144 -p, --passive
145         Server-links won't be automatically established.
146
147 --configtest
148         Reads, validates and dumps the configuration file as interpreted
149         by the server. Then exits.
150
151 Use "--help" to see a short help text describing all available parameters
152 the server understands, with "--version" the ngIRCd shows its version
153 number. In both cases the server exits after the output.
154
155
156 -- 
157 $Id: INSTALL,v 1.13 2003/03/09 22:03:58 alex Exp $