Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Vriendencafe

Pages: [1]
1
New Modules / Re: Icecast
« on: February 20, 2017, 03:43:54 AM »
This will install Icecast
it should be easy to make a module/plugin for CWP
I to like to see icecast plugin for CWP


Code: [Select]
#!/bin/bash


yum remove -y libpam-krb5
yum groupinstall -y "Development Tools"
yum install -y wget perl curl dash bash tree expect screen cron sudo coreutils vorbis-tools quota nmap curl-devel libtheora-devel libvorbis-devel libxslt-devel speex-devel libxslt
mkdir -p /tmp/icecast2
cd /tmp/icecast2
wget http://downloads.xiph.org/releases/icecast/icecast-2.3.3.tar.gz
tar xf icecast-2.3.3.tar.gz
cd icecast-2.3.3
./configure
make
make install
ln -fs /usr/local/bin/icecast /usr/local/bin/icecast2
rm -rf /tmp/icecast2
[ $? -gt 0 ] && echo "$installerror" && exit
if [ "$MT" = "amd64" ]
then
yum install -y glibc.i686
[ $? -gt 0 ] && echo "$installerror" && exit

Pages: [1]