タグ

ircとcentosに関するnantanのブックマーク (2)

  • 覚えるテク ircd-hybrid

    ircとは リアルタイムでチャットが出来るチャットサーバーです。 ircサーバーは複数ありますが、設定ファイルが読みやすいことからircd-hybridをインストールします。 ■ インストール epelのリポジトリからインストールします。 [root@example ~]# yum --enablerepo=epel install ircd-hybrid ■ 設定 オリジナルの設定ファイルをバックアップして、テンプレートをコピー/編集します。 [root@example ~]# mv /etc/ircd/ircd.conf /etc/ircd/ircd.conf.default [root@example ~]# cp -v /usr/share/doc/ircd-hybrid-7.2.3/simple.conf /etc/ircd/ircd.conf 設定ファイル:/etc/irc

  • 覚えるテク EPEL

    ■ EPELとは Fedora用に開発されたパッケージをCentOS(またはRHEL)のリポジトリを追加するパッケージ。 ■ インストール RPMをダウンロード [root@example tmp]# wget http://download.fedora.redhat.com/pub/epel/5/i386/epel-release-5-3.noarch.rpm インストール [root@example tmp]# rpm -ivh epel-release-5-3.noarch.rpm ■ 設定 設定ファイル:/etc/yum.repos.d/epel.repo [epel] ~ #0に変更 enabled=0 ■ 使い方 [root@example ~]# yum --enablerepo=epel install [パッケージ名]

  • 1