Please help install icecast -KH

Read 22058 times
I have being trying all day to install this but it just wont work .

Please help .
I have being trying all day to install this but it just wont work .

Please help .

I can install for you!!!
This should work ..

Quote
cd /usr/src && wget https://github.com/karlheyes/icecast-kh/archive/icecast-2.3.3-kh8.tar.gz && tar -zxf icecast-2.3.3-kh8 && cd icecast-kh-icecast-2.3.3-kh8 && ./configure;make CFLAGS="-D_XOPEN_SOURCE=600" && make install && /usr/local/centovacast/sbin/enable_package ICECAST /usr/local/bin/icecast
My Auto DJ
Orlando, FL USA
Quality SHOUTcast Hosting http://myautodj.com
SHOUTcast Widgets http://shoutcastwidgets.com
Hello. i have the same problem, only have a Icecast in my centova vps. needed Shoutcast V2 and Icecast-KH. i will try with this solution por icecast-kh. thanks
Quote
cd /usr/src && wget https://github.com/karlheyes/icecast-kh/archive/icecast-2.3.3-kh8.tar.gz && tar -zxf icecast-2.3.3-kh8 && cd icecast-kh-icecast-2.3.3-kh8 && ./configure;make CFLAGS="-D_XOPEN_SOURCE=600" && make install && /usr/local/centovacast/sbin/enable_package ICECAST /usr/local/bin/icecast
There is a syntex error the tarfile name wrong " tar -zxf icecast-2.3.3-kh8" It should be " tar -zxf icecast-2.3.3-kh8.tar.gz"
Also, this process fail to ./configure  due to missing files. Can someone recommend a tarball with the missing files
This should work ..

Quote
cd /usr/src && wget https://github.com/karlheyes/icecast-kh/archive/icecast-2.3.3-kh8.tar.gz && tar -zxf icecast-2.3.3-kh8 && cd icecast-kh-icecast-2.3.3-kh8 && ./configure;make CFLAGS="-D_XOPEN_SOURCE=600" && make install && /usr/local/centovacast/sbin/enable_package ICECAST /usr/local/bin/icecast

Hello dear. so many thanks for you help. with your code i was updated my Icecast from V1 to V2 (KH)

Only needed install Shoutcast V2 and all right.
So, is this like just one command that is run and icecast is updated? I'd like to have KH installed as well. I'm not up on the commands for Linux yet.
I think you first have to have Icecast installed so first run

/usr/local/centovacast/sbin/update --add icecast

then the line of code

Should be fairly easy just login as root and run the command(s)

If you need a SSH client I recommend BitVise, you can save your servers for fast access, when you connect to a server a command windows pops up as well as a SFTP window
https://www.bitvise.com/
My Auto DJ
Orlando, FL USA
Quality SHOUTcast Hosting http://myautodj.com
SHOUTcast Widgets http://shoutcastwidgets.com
Thanks for the reply. I already have icecast installed. So I am assuming just run the command as presented by Sam604 or with the fix you mentioned?
The code I posted at the start works I just tried it there is no need for a "fix" as sam604 says -- just ran it to test

http://prntscr.com/2r75mw

My Auto DJ
Orlando, FL USA
Quality SHOUTcast Hosting http://myautodj.com
SHOUTcast Widgets http://shoutcastwidgets.com
Thanks much. I appreciate the help, worked just as you said. Again, many thanks.
Last Edit: February 10, 2014, 04:24:15 am by kahfluie
 /usr/local/centovacast/sbin/enable_package ICECAST /usr/local/bin/icecastcd /usr/src && wget https://github.com/karlheyes/icecast-kh/archive/icecast-2.3.3-kh8.tar.gz && tar -zxf icecast-2.3.3-kh8 && cd icecast-kh-icecast-2.3.3-kh8 && ./configure;make CFLAGS="-D_XOPEN_SOURCE=600" && make install && /usr/local/centovacast/sbin/enable_package ICECAST /usr/local/bin/icecast
--2014-02-10 18:14:56--  https://github.com/karlheyes/icecast-kh/archive/icecast-2.3.3-kh8.tar.gz
Resolving github.com (github.com)... 192.30.252.129
Connecting to github.com (github.com)|192.30.252.129|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://codeload.github.com/karlheyes/icecast-kh/tar.gz/icecast-2.3.3-kh8 [following]
--2014-02-10 18:14:57--  https://codeload.github.com/karlheyes/icecast-kh/tar.gz/icecast-2.3.3-kh8
Resolving codeload.github.com (codeload.github.com)... 192.30.252.146
Connecting to codeload.github.com (codeload.github.com)|192.30.252.146|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [application/x-gzip]
Saving to: `icecast-2.3.3-kh8.tar.gz'

    [                      <=>              ] 917,206      150K/s   in 5.5s

2014-02-10 18:15:05 (163 KB/s) - `icecast-2.3.3-kh8.tar.gz' saved [917206]

tar (child): icecast-2.3.3-kh8: Cannot open: No such file or directory
tar (child): Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error is not recoverable: exiting now
make: *** No targets specified and no makefile found.  Stop.
make: *** No targets specified and no makefile found.  Stop.
root@debian:/usr/src#
THIS IS THE ERROR I GET RUNNING THE CODE STRAIGHT
Last Edit: February 10, 2014, 02:23:47 pm by sam604
sam604,

The key is in the output:
Code: [Select]
tar (child): icecast-2.3.3-kh8: Cannot open: No such file or directory
Change
Code: [Select]
&& tar -zxf icecast-2.3.3-kh8 && to
Code: [Select]
&& tar -zxf icecast-2.3.3-kh8.tar.gz && and it will work fine.

Chris
No I don't think that matters, other users have reported above the code works fine but I think it's because your not using Centos, your on Debian correct? Not really sure have never used Debian
My Auto DJ
Orlando, FL USA
Quality SHOUTcast Hosting http://myautodj.com
SHOUTcast Widgets http://shoutcastwidgets.com
No I don't think that matters, other users have reported above the code works fine but I think it's because your not using Centos, your on Debian correct? Not really sure have never used Debian

I'm actually using Scientific Linux 6.5.  ;D

Chris