Technology computers-hardware

How to Set Up an IRC Operator on Ircd-Ircu in Debian

    • 1). Type "sudo nano /etc/ircd/ircd.conf" at the prompt in Terminal or another terminal emulator program to open the ircd-ircu configuration file with root privileges. Type your password when prompted.

    • 2). Add the following block to the end of the configuration file, changing <password> to your password and <name> to your operator nickname. If you only want to grant limited operator privileges, you should set local to "yes" instead of "no."

      Operator {

      local = no;

      host = "*@*";

      password = "$PLAIN$<password>";

      name = "<name>";

      class = "Local";

      };

    • 3). Type "sudo /etc/init.d/ircd-ircu restart" in Terminal to restart ircd-ircu. Type your password when prompted.



Leave a reply