この文書の現在のバージョンと選択したバージョンの差分を表示します。
linux:icecast [2009/02/03 15:13] miyako 作成 |
linux:icecast [2009/02/15 13:04] (現在) miyako |
||
---|---|---|---|
ライン 7: | ライン 7: | ||
<code> | <code> | ||
# yum -y install libtheora-devel speex-devel | # yum -y install libtheora-devel speex-devel | ||
+ | # yum -y install libxslt-devel | ||
# cd /usr/local/src/ | # cd /usr/local/src/ | ||
ライン 21: | ライン 22: | ||
たぶんこれでインストール完了\\ | たぶんこれでインストール完了\\ | ||
\\ | \\ | ||
- | とりあえず起動してみよう | + | vi /etc/icecast.xmlを編集(パスワードとマウントポイントの設定)\\ |
<code> | <code> | ||
- | vi /etc/icecast.xmlを編集 | + | # vi /etc/icecast.xml |
+ | <authentication> | ||
+ | <!-- Sources log in with username 'source' --> | ||
+ | <source-password>パスワード</source-password> | ||
+ | <!-- Relays log in username 'relay' --> | ||
+ | <relay-password>パスワード</relay-password> | ||
+ | |||
+ | <!-- Admin logs in with the username given below --> | ||
+ | <admin-user>admin</admin-user> | ||
+ | <admin-password>パスワード</admin-password> | ||
+ | </authentication> | ||
+ | |||
+ | <mount> | ||
+ | <mount-name>/music</mount-name> | ||
+ | </mount> | ||
</code> | </code> | ||
+ | |||