Mudanças entre as edições de "Icecast2"

De MochilaWiki
Ir para navegaçãoIr para pesquisar
Linha 21: Linha 21:
 
<source lang="bash">
 
<source lang="bash">
 
cd /usr/src
 
cd /usr/src
wget http://downloads.xiph.org/releases/icecast/icecast-2.4-beta5.tar.gz
+
wget http://downloads.xiph.org/releases/icecast/icecast-2.4.0.tar.gz
tar zxvf icecast-2.4-beta5.tar.gz  
+
tar zxvf icecast-2.4.0.tar.gz  
cd icecast-2.3.995/
+
cd icecast-2.4.0
 
./configure
 
./configure
 
make
 
make

Edição das 21h52min de 15 de maio de 2014

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 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.0.tar.gz
tar zxvf icecast-2.4.0.tar.gz 
cd icecast-2.4.0
./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 -p /usr/local/var/log/icecast/
chown -R icecast2: /etc/icecast2 /usr/local/var/log/icecast/
chmod -R ug+rw,o+r,ugo+X /etc/icecast2
mkdir /var/log/icecast/
chown icecast2: /var/log/icecast/
cp /usr/local/etc/icecast.xml /etc/icecast2/icecast.xml
chown icecast2: /etc/icecast2/icecast.xml
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