Chris P
Chris P

Reputation: 2357

Install Icecast into Linux

I have no experience to linux system, and i would like to help me to solve this issue.. Now i have the following job..

cd ~
cd home
cd myusernmae
mkdir src
wget http://downloads.xiph.org/releases/icecast/icecast-2.3.2.tar.gz
tar -zxvf icecast-2.3.2.tar.gz
cd icecast-2.3.2
./configure
Error so i type the followings
apt-get install libxslt1-dev
sudo apt-get install libogg-dev libvorbis-dev
./configure
make
make install
cp -R /home/username/icecast-2.3.2/web ~/icecast/

Now when i type icecast shell response with the following message

Icecast 2.3.2

usage: icecast [-b -v] -c <file>
options:
        -c <file>       Specify configuration file
        -v              Display version info
        -b              Run icecast in the background

I know how can i use icecast into windows (icecast configuration file) but i don't know where to find it and how modify it into linux (vi editor :( ) Any help would me usefull

Upvotes: 1

Views: 9871

Answers (1)

Noufal Ibrahim
Noufal Ibrahim

Reputation: 72795

If this is an Ubuntu or a Debian based system, a simple sudo apt-get install icecast2 should install the server for you without polluting your system. The configuration file is usually in /etc/. If it is Debian or Ubuntu, doing a dpkg -L icecast2 | grep etc after installing should show you the config files. Fire up an editor, edit them and then restart the service.

Upvotes: 5

Related Questions