Difference between revisions of "Raspberry Pi Streaming Media Server"

From Interaction Station Wiki
Jump to navigation Jump to search
(Created page with "*We will start from the image "buster_wdka_eduroam.img", based on Raspbian Buster (2020-08-20-raspios-buster-armhf-full.zip). Tested on a Raspberry Pi 4. == Eduroam WiFi conn...")
 
Line 2: Line 2:
  
 
== Eduroam WiFi connection ==
 
== Eduroam WiFi connection ==
*First we are going to setup our user name and password for eduroam
+
*First we are going to setup our user name and password for eduroam.
  
 +
*Open the terminal and type:
 +
wpa_cli terminate
  
 +
*Press the key 'Enter'
  
 +
*Copy the following line and paste it in the terminal:
 +
sudo nano /etc/wpa_supplicant/wpa_supplicant.conf
 +
 +
*Press the key 'Enter'
 +
 +
*This will open up nano (text editor) to allow you to edit the file.
 +
 +
*Use the key arrows to navigate the text file until you reach the line:
 +
identity="studentnumber"
 +
 +
*Replace studentnumber with your student number :)
 +
 +
*Replace the word password in quotes with your WdKA password.
 +
 +
*Press the key CTRL and without releasing it, press the key 'x'.
 +
 +
*Press the key 'Enter' to confirm that you want to save the file
 +
 +
*Reboot the computer by typing:
 +
sudo reboot
 +
 +
 +
*Press the key 'Enter'
  
 
== Installing Icecast2 ==
 
== Installing Icecast2 ==

Revision as of 23:57, 16 September 2020

  • We will start from the image "buster_wdka_eduroam.img", based on Raspbian Buster (2020-08-20-raspios-buster-armhf-full.zip). Tested on a Raspberry Pi 4.

Eduroam WiFi connection

  • First we are going to setup our user name and password for eduroam.
  • Open the terminal and type:
wpa_cli terminate
  • Press the key 'Enter'
  • Copy the following line and paste it in the terminal:
sudo nano /etc/wpa_supplicant/wpa_supplicant.conf
  • Press the key 'Enter'
  • This will open up nano (text editor) to allow you to edit the file.
  • Use the key arrows to navigate the text file until you reach the line:
identity="studentnumber"
  • Replace studentnumber with your student number :)
  • Replace the word password in quotes with your WdKA password.
  • Press the key CTRL and without releasing it, press the key 'x'.
  • Press the key 'Enter' to confirm that you want to save the file
  • Reboot the computer by typing:
sudo reboot


  • Press the key 'Enter'

Installing Icecast2

  • Open the terminal and type:
sudo apt-get install icecast2
  • Select "yes" to configure Icecast2
  • You will see a screen that says: Icecast2 hostname: locahost. Press the key 'Enter'