]> arthur.barton.de Git - ngircd-alex.git/blob - doc/FAQ.txt
Add FAQ entry for 'Where is the log file'?
[ngircd-alex.git] / doc / FAQ.txt
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                     -- FAQ: Frequently Asked Questions --
11
12
13 I. General
14 ~~~~~~~~~~
15 Q: Is it possible to link the ngIRCd with non-ngIRCd servers?
16 A: Yes. ngIRCd is compatible to the original ircd used by IRCNet. Actually
17    this is being tested with version 2.10.3p3.
18
19 Q: Is there a homepage with further information and downloads?
20 A: Yes. Please visit <http://ngircd.barton.de/>.
21
22 Q: Why should I use ngIRCd instead of the original one?
23 A: ngIRCd offers several benefits: no problems with dynamic IPs, easy to
24    configure, open source (GPL), under active development.
25
26
27 II. Compilation
28 ~~~~~~~~~~~~~~~
29 Q: I did a "CVS checkout" but can't execute ./configure because the script
30    is missing in the generated directory!?
31 A: When using development versions via CVS, the configure script as well as
32    the Makefile.in templates must be generated using GNU automake and GNU
33    autoconf. To simplify this task run the ./autogen.sh script which will
34    execute the required tools for you; then continue with executing the
35    ./configure script as usual.
36
37 Q: The ./autogen.sh script complains "aclocal: command not found".
38 A: GNU automake is missing on your system but required for building CVS
39    versions of ngIRCd. Install GNU automake 1.6 or later and try again.
40
41 Q: The ./autogen.sh script stops with "autoheader: command not found".
42 A: GNU autoconf is missing on your system but required for building CVS
43    versions of ngIRCd. Install GNU autoconf 2.52 or later and try again.
44
45 Q: The ./autogen.sh script fails and the message "automake: configure.in:
46    AM_INIT_AUTOMAKE must be used" is displayed.
47 A: Most probably you are using version 1.5 of GNU automake which seems to be
48    incompatible to the build system of ngIRCd. Solution: upgrade to at least
49    version 1.6 of GNU automake.
50    (If you are using Debian 3.0 "Woody" you can try to downgrade to version
51    1.4 of GNU automake shipped with this distribution; it should work, too.)
52
53
54 III. Runtime
55 ~~~~~~~~~~~~
56
57 Q: Where is the log file located?
58 A: ngIRCd does not write its own log file. Instead, ngIRCd uses
59    syslog(3). Check the files in /var/log/ and/or consult the
60    documentation for your system logger daemon.
61 Q: I cannot connect to remote peers when I use the chroot option, the
62    following is logged: "Can't resolve example.com: unknown error!".
63 A: On Linux/glibc with chroot enabled you need to put some libraries inside
64    the chroot as well, notably libnss_dns; maybe others. Unfortunately, even
65    linking ngircd statically does not help this. The only known workaround
66    is to either disable chroot support or to link against dietlibc instead
67    of glibc. (tnx to Sebastian Siewior)
68
69
70 IV. Bugs!?
71 ~~~~~~~~~~
72 Q: Is there a list of known bugs and desired feature enhancements?
73 A: Yes. Have a look at the bug tracking system (Bugzilla) for ngIRCd located
74    at <http://ngircd.barton.de/bugzilla/index.cgi>. There you can file bug
75    reports and feature requests as well as search the bug database.
76
77 Q: What should I do if I found a bug?
78 A: Please file a bug report at <http://ngircd.barton.de/bugzilla/index.cgi>!
79    The author of the particular component will be notified automagically :-)
80
81
82 -- 
83 $Id: FAQ.txt,v 1.12 2008/01/02 22:47:58 alex Exp $