FAQ.txt 3.9 KB

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