Last active
August 29, 2015 14:15
-
-
Save koi-chan/3ea137d3bb7f71bdcaa1 to your computer and use it in GitHub Desktop.
charybdis-install
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ユーザーを追加します。 | |
sudo useradd charybdis -s /sbin/nologin | |
# ものすごい無茶な方法で専用ユーザーにログインします。 | |
sudo su - charybdis -s /bin/bash | |
# tarのダウンロード・展開 | |
wget https://github.com/atheme/charybdis/archive/charybdis-3.4.2.tar.gz | |
tar zxvf charybdis-3.4.2.tar.gz | |
cd charybdis-charybdis-3.4.2 | |
# configure | |
./configure --enable-ipv6 --enable-openssl --with-nicklen=50 --with-topiclen=390 | |
make && make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment