Um Kiwi IRC richtig nutzen zu können muss zuerst Node.js installiert werden. Hierfür muss die aktuellste Version via PPA geholt werden.
sudo add-apt-repository ppa:chris-lea/node.js sudo apt-get update sudo apt-get install nodejs
Nun kann KiwiIRC installiert werden.
#Downlaod Kiwi Source $ git clone https://github.com/prawnsalad/KiwiIRC.git && cd KiwiIRC #Install dependencies $ npm install #Copy and Edit Config $ cp config.example.js config.js $ nano config.js #Build Source $ ./kiwi build
Nun kann SSL aktiviert werden
#config öffnen nano config.js
openssl genrsa -out server.key openssl req -new -key server.key -out csr.pem openssl x509 -req -days 9999 -in csr.pem -signkey server.key -out cert.pem rm csr.pem
$ ./kiwi start #mit dem -f Flag kann man Kiwi im Foreground (zu Debug zwecken starten) $ ./kiwi -f