Find the answer to your Linux question:
Page 1 of 2 1 2 LastLast
Results 1 to 10 of 18
can somebody tell me the detailed procedure to install icecast server in rhel5 server edition. i download the various tarballs and then run ./configure make make install the documentation is ...
  1. #1
    Just Joined!
    Join Date
    Apr 2009
    Location
    india
    Posts
    19

    Question help needed urgent-problem installing icecast server in rhel5 server

    can somebody tell me the detailed procedure to install icecast server
    in rhel5 server edition.

    i download the various tarballs and then run

    ./configure
    make
    make install

    the documentation is created in /usr
    but no config file /etc/icecast.xml is present there.

  2. #2
    Linux Guru waterhead's Avatar
    Join Date
    Jul 2004
    Location
    Franklin, Wisconsin
    Posts
    4,577
    The documentation is created in this location:
    /usr/local/share/doc/icecast/

    The icecast.xml file can be found here:
    /usr/local/etc/icecast.xml

    Many of the documents can be viewed in the source folder, under the /doc folder.
    Paul

    Please do not send Private Messages to me with requests for help. I will not reply.

  3. #3
    Just Joined!
    Join Date
    Apr 2009
    Location
    india
    Posts
    19
    it is just doc files for help.i dunno know whether it will work or not but i find the soln at

    Icecast Streaming Media Server :: View topic - Centos 5 + Icecast + Tears.

    can u plz tell me how 2 build the rpm from the tar balls.

  4. #4
    Linux Guru waterhead's Avatar
    Join Date
    Jul 2004
    Location
    Franklin, Wisconsin
    Posts
    4,577
    Why do you need to build a rpm? Just install from the source.

    There are some existing rpms of icecast.

    RPM Search icecast-2.3.1-4.el5.kb.i386.rpm
    RPM Search icecast-2.3.1-4.el5.kb.x86_64.rpm
    Paul

    Please do not send Private Messages to me with requests for help. I will not reply.

  5. #5
    Super Moderator MikeTbob's Avatar
    Join Date
    Apr 2006
    Location
    Texas
    Posts
    7,145
    Quote Originally Posted by piyushml20 View Post
    it is just doc files for help.i dunno know whether it will work or not but i find the soln at

    Icecast Streaming Media Server :: View topic - Centos 5 + Icecast + Tears.

    can u plz tell me how 2 build the rpm from the tar balls.
    Hello and Welcome!
    Check this link for creating RPMS from tarballs, it should at least set you in the right direction.
    Docs/Drafts/BuildingPackagesGuide - FedoraProject
    I do not respond to private messages asking for Linux help, Please keep it on the forums only.
    All new users please read this.** Forum FAQS. ** Adopt an unanswered post.

  6. #6
    Just Joined!
    Join Date
    Apr 2009
    Location
    india
    Posts
    19
    Quote Originally Posted by waterhead View Post
    Why do you need to build a rpm? Just install from the source.

    There are some existing rpms of icecast.

    RPM Search icecast-2.3.1-4.el5.kb.i386.rpm
    RPM Search icecast-2.3.1-4.el5.kb.x86_64.rpm
    the icecast server is done but problm with ices-the audio source.
    i cannot find any rpm for ices.there r just tar.gz
    i tried using
    ./configure
    make
    make install
    but i exactly dont know how to install from that.
    that's why i wanna built rpm

  7. #7
    Super Moderator MikeTbob's Avatar
    Join Date
    Apr 2006
    Location
    Texas
    Posts
    7,145
    Sometimes it is easier to install from source rather than build rpms. Why don't you try again and post the error messages, I'm sure someone can help you with it.
    ./configure
    make
    make install
    I do not respond to private messages asking for Linux help, Please keep it on the forums only.
    All new users please read this.** Forum FAQS. ** Adopt an unanswered post.

  8. #8
    Linux Guru waterhead's Avatar
    Join Date
    Jul 2004
    Location
    Franklin, Wisconsin
    Posts
    4,577
    I gave a try installing ices from the source. I assume that you want the mp3 one so that is what i tried. I used ices-0.4.tar.gz

    There are a few prerequisites that need to be installed. If you want to be able to include source files of different formats, you need the developmental branch of the file types.

    From the README file
    5. Vorbis, FLAC and MP4 transcoding
    If compiled with the appropriate libraries, ices can transcode
    Ogg Vorbis, FLAC and MP4 (AAC) audio files to MP3 on the fly. Keep
    your sources in whatever format you like best.
    I went through the ./configure process, and got a few errors. Each time installing a few things to correct the error or enable more supported formats. Here are some of the things that I installed on my Fedora 10 box. You will need these too:

    libshout-devel
    Also required by libshout-devel:
    libtheora-devel
    speex-devel
    lame-devel
    flac-devel
    libvorbis-devel

    Then running the ./configure command, it automatically checks for the various support and gave me this output:
    Compiling with: -I/usr/include/libxml2 -I/usr/include/python2.5 -g -O2 -Wall -I/usr/include -pthread
    Linking with: -L/usr/lib/python2.5/config -lshout -lvorbis -lm -ltheora -lspeex -logg -lxml2 -lz-lm -lpython2.5 -lpthread -ldl -lutil -lm -lpthread -ldl -lutil -lmp3lame -lvorbisfile -lvorbis -logg -lm
    Features:
    XML : yes
    Python : yes
    Perl : no
    LAME : yes
    Vorbis : yes
    MP4 : no
    FLAC : no
    I have flac-devel installed, yet it still won't give me that support. I then installed this:

    faad2-devel

    And now it gives me this:
    Compiling with: -I/usr/include/libxml2 -I/usr/include/python2.5 -g -O2 -Wall -I/usr/include -pthread
    Linking with: -L/usr/lib/python2.5/config -lshout -lvorbis -lm -ltheora -lspeex -logg -lxml2 -lz-lm -lpython2.5 -lpthread -ldl -lutil -lm -lpthread -ldl -lutil -lmp3lame -lvorbisfile -lvorbis -logg -lFLAC -lm
    Features:
    XML : yes
    Python : yes
    Perl : no
    LAME : yes
    Vorbis : yes
    MP4 : no
    FLAC : yes
    Good enough! Someone else can figure out the other missing libraries!

    I ran the make command, but it gave me flac erors, so I had to rerun it, removing flac support.

    ./configure --without-flac

    Now running make and make install commands installed the program. This should get you pretty far. You will have to work out any other dependency problems. By using Red Hat, you won't be able to install dependencies from a repository. You will have to hunt them down and install them manually.
    Last edited by waterhead; 04-13-2009 at 12:26 AM.
    Paul

    Please do not send Private Messages to me with requests for help. I will not reply.

  9. #9
    Super Moderator MikeTbob's Avatar
    Join Date
    Apr 2006
    Location
    Texas
    Posts
    7,145
    Very Nice Paul!
    I do not respond to private messages asking for Linux help, Please keep it on the forums only.
    All new users please read this.** Forum FAQS. ** Adopt an unanswered post.

  10. #10
    Just Joined!
    Join Date
    Apr 2009
    Location
    india
    Posts
    19

    Question error - Public key for curl-devel-7.15.5-2.el5.i386.rpm is not installed

    [root@sunny ~]# yum install curl-devel-7.15.5-2.el5.i386.rpm

    Dependencies Resolved

    ================================================== ===========================
    Package Arch Version Repository Size
    ================================================== ===========================
    Installing:
    curl-devel i386 7.15.5-2.el5 curl-devel-7.15.5-2.el5.i386.rpm 637 k
    Installing for dependencies:
    e2fsprogs-devel i386 1.39-10.el5 install 561 k
    keyutils-libs-devel i386 1.2-1.el5 install 27 k
    krb5-devel i386 1.6.1-31.el5 install 1.9 M
    libselinux-devel i386 1.33.4-4.el5 install 131 k
    libsepol-devel i386 1.15.2-1.el5 install 189 k
    openssl i386 0.9.8e-7.el5 install 1.4 M
    openssl-devel i386 0.9.8e-7.el5 install 1.8 M
    Updating for dependencies:
    krb5-libs i386 1.6.1-31.el5 install 660 k
    krb5-workstation i386 1.6.1-31.el5 install 873 k

    Transaction Summary
    ================================================== ===========================
    Install 8 Package(s)
    Update 2 Package(s)
    Remove 0 Package(s)

    Total download size: 8.1 M
    Is this ok [y/N]: y
    Downloading Packages:
    warning: rpmts_HdrFromFdno: Header V3 DSA signature: NOKEY, key ID 82fd17b2


    Public key for curl-devel-7.15.5-2.el5.i386.rpm is not installed

    the whole problem is in the krb5 dependency.
    when i update krb5-workstation it mention it require krb5-lib.
    when i update krb5-lib it mention it is being used by installed krb5-workstation.



    Quote Originally Posted by waterhead View Post
    I gave a try installing ices from the source. I assume that you want the mp3 one so that is what i tried. I used ices-0.4.tar.gz

    There are a few prerequisites that need to be installed. If you want to be able to include source files of different formats, you need the developmental branch of the file types.

    From the README file
    I went through the ./configure process, and got a few errors. Each time installing a few things to correct the error or enable more supported formats. Here are some of the things that I installed on my Fedora 10 box. You will need these too:

    libshout-devel
    Also required by libshout-devel:
    libtheora-devel
    speex-devel
    lame-devel
    flac-devel
    libvorbis-devel

    Then running the ./configure command, it automatically checks for the various support and gave me this output:
    I have flac-devel installed, yet it still won't give me that support. I then installed this:

    faad2-devel

    And now it gives me this:
    Good enough! Someone else can figure out the other missing libraries!

    I ran the make command, but it gave me flac erors, so I had to rerun it, removing flac support.

    ./configure --without-flac

    Now running make and make install commands installed the program. This should get you pretty far. You will have to work out any other dependency problems. By using Red Hat, you won't be able to install dependencies from a repository. You will have to hunt them down and install them manually.

Page 1 of 2 1 2 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...