MrChillax

Icecast-Server Commands

Feb 2nd, 2017
723
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.41 KB | None | 0 0
  1. #Install on Debian 8. Update / Upgrade first
  2. #-----
  3. apt-get update
  4. apt-get upgrade -y
  5.  
  6.  
  7. #Install C compiler and the prerequisites
  8. #----
  9. apt-get install build-essential
  10. apt-get install curl libvorbis-dev libxslt-dev libxslt1.1
  11.  
  12.  
  13. #Install Icecast
  14. #----
  15. wget http://downloads.xiph.org/releases/icecast/icecast-2.4.3.tar.gz
  16. tar -zxf icecast-2.4.3.tar.gz
  17. cd icecast-2.4.3
  18. ./configure
  19. make
  20. make install
Advertisement
Add Comment
Please, Sign In to add comment