0

At my school, last year, they created a radio station for European School Radio. I saw that they used windows, and I am on linux. I want to see how can I create a radio but not online, I want to be heard on radios.

How can it be done on Ubuntu?

Thanks. IF you can give something to read, I really didn't find anything.

Klaus
  • 81

1 Answers1

2

Credit goes to Free software magazine

  • open your terminal and paste this

     sudo gedit /etc/apt/sources.list
    
  • paste this line at ending

    deb http://apt.sourcefabric.org/ saucy main
    deb http://archive.ubuntu.com/ubuntu/ saucy multiverse
    

    save & close that file.

  • Then paste these command in terminal one after one

         sudo apt-get update
         sudo apt-get install sourcefabric-keyring
         sudo apt-get install postgresql
         sudo apt-get install icecast2
         sudo apt-get install airtime
    

Now follow the Configuration File at manual: http://en.flossmanuals.net/airtime-en-2-0/

Raja G
  • 102,391
  • 106
  • 255
  • 328