Icecast2

De MochilaWiki
Ir para navegaçãoIr para pesquisar

página do projeto

sources.list

deb http://ftp.us.debian.org/debian wheezy main non-free contrib
deb-src http://ftp.us.debian.org/debian wheezy main non-free contrib
deb http://security.debian.org/ wheezy/updates main non-free contrib
deb-src http://security.debian.org/ wheezy/updates main non-free contrib
deb http://www.deb-multimedia.org wheezy main non-free
deb-src http://www.deb-multimedia.org wheezy main non-free

instalando dependências:

apt-get update
apt-get install -y deb-multimedia-keyring
apt-get update
apt-get build-dep icecast2

instalando icecast

cd /usr/src
wget http://downloads.xiph.org/releases/icecast/icecast-2.4.1.tar.gz
tar zxvf icecast-2.4.1.tar.gz 
cd icecast-2.4.1
./configure
make
make install

ajustando configurações

addgroup --system icecast
adduser --system --disabled-password --disabled-login \
--home /usr/share/icecast2 --no-create-home --ingroup icecast \
icecast2
mkdir /etc/icecast2
mkdir /var/log/icecast/
cp /usr/local/etc/icecast.xml /etc/icecast2/icecast.xml
chown -R icecast2: /etc/icecast2 /var/log/icecast/
chmod -R ug+rw,o+r,ugo+X /etc/icecast2
chmod ug+rw,o=,ug+X /etc/icecast2/icecast.xml
wget http://pub.nkosi.org/icecast.init -O /etc/init.d/icecast
chmod +x /etc/init.d/icecast
update-rc.d -f icecast defaults

redirecionando porta 8000 para 80

iptables -A PREROUTING -t nat -p tcp -d 192.168.2.32 --dport 80 -j REDIRECT --to-port 8000
iptables-save > /etc/iptables.up.rules
echo 'pre-up iptables-restore < /etc/iptables.up.rules' >> /etc/network/interfaces

criando ponto de montagem

para criar um ponto de montagem coloque esse exemplo simples em /etc/icecast2/icecast.xml:

  • para mp3
<mount>
  <mount-name>radio</mount-name>
  <password>m4l4t4est4</password>
  <max-listeners>1000</max-listeners>
</mount>
  • para ogg
<mount>
  <mount-name>/radio.ogg</mount-name>
  <password>m4l4test4</password>
  <max-listeners>1000</max-listeners>
</mount>

agora basta iniciar o serviço:

# /etc/init.d/icecast restart