Line 8: |
Line 8: |
| Here is the official operating system with an installation guide: https://www.raspberrypi.org/downloads/raspbian/ | | Here is the official operating system with an installation guide: https://www.raspberrypi.org/downloads/raspbian/ |
| | | |
− | == Connecting to wifi networks on campus == | + | == Connecting to Wi-Fi networks on campus == |
| Connecting to wifi on campus can be difficult. You can connect to your phone or laptop if you turn on a hotspot, you can connect to eduroam by configuring it in the Pi or you can connect to an IOT (Internet Of Things) network called UOdevices by providing your Pi's MAC address. | | Connecting to wifi on campus can be difficult. You can connect to your phone or laptop if you turn on a hotspot, you can connect to eduroam by configuring it in the Pi or you can connect to an IOT (Internet Of Things) network called UOdevices by providing your Pi's MAC address. |
| | | |
Line 18: |
Line 18: |
| Setting up a hotspot with a smart phone: https://www.pcmag.com/how-to/how-to-turn-your-phone-into-a-wi-fi-hotspot | | Setting up a hotspot with a smart phone: https://www.pcmag.com/how-to/how-to-turn-your-phone-into-a-wi-fi-hotspot |
| | | |
− | === Eduroam === | + | === eduroam === |
| You will need to go into the network settings of the Pi to configure the eduroam parameters. | | You will need to go into the network settings of the Pi to configure the eduroam parameters. |
| | | |
− | # Navigate to the folder etc/wpa_supplicant/ (cd /etc/wpa_supplicant/). | + | # Navigate to the folder etc/wpa_supplicant/ (<code>cd /etc/wpa_supplicant/</code>). |
− | # Open the wpa_supplicant.conf file (sudo nano wpa_supplicant.conf). | + | # Open the wpa_supplicant.conf file (<code>sudo nano wpa_supplicant.conf</code>). |
| # Add the lines below to the file, then save and close it. | | # Add the lines below to the file, then save and close it. |
| # You may need to restart the Pi for the changes to take effect | | # You may need to restart the Pi for the changes to take effect |
| | | |
− | network={ | + | network={ |
− | | + | ssid="eduroam" |
− | ssid="eduroam"
| + | priority=1 |
− | | + | proto=RSN |
− | priority=1
| + | key_mgmt=WPA-EAP |
− | | + | pairwise=CCMP |
− | proto=RSN
| + | auth_alg=OPEN |
− | | + | eap=PEAP |
− | key_mgmt=WPA-EAP
| + | identity="youremail123@uottawa.ca" |
− | | + | password="your uozone password" |
− | pairwise=CCMP
| + | } |
− | | |
− | auth_alg=OPEN
| |
− | | |
− | eap=PEAP
| |
− | | |
− | identity="USERNAME" (your email)
| |
− | | |
− | password="PASSWORD" (your uozone password)
| |
− | | |
− | } | |
| | | |
| === UOdevices === | | === UOdevices === |
| This network covers STEM, CBY and SITE. | | This network covers STEM, CBY and SITE. |
| | | |
− | # You will need the MAC address of the Pi so that your device can be registered and approved to use the UOdevices network, here is how: https://www.raspberrypi-spy.co.uk/2012/06/finding-the-mac-address-of-a-raspberry-pi/ | + | # You will need the MAC address of the Pi so that your device can be registered and approved to use the UOdevices network. You can find it by [https://www.raspberrypi-spy.co.uk/2012/06/finding-the-mac-address-of-a-raspberry-pi/ following this guide]. |
− | # Once you have the MAC, please send it to makerlab@uottawa.ca so it can be given to our IT department. | + | # Once you have the MAC, please send it to [mailto:makerlab@uottawa.ca?subject=Add%20Raspberry%20Pi%20to%20UOdevices%20network makerlab@uottawa.ca] so it can be given to our IT department. |
− | # When the MAC has been added, you will be able to connect to it in the same way as the Eduroam network with the ssid UOdevices and makerlab@uottawa.ca will also be able to give you the password. | + | # When the MAC has been added, you will be able to connect to it in the same way as the Eduroam network with the SSID UOdevices and [mailto:makerlab@uottawa.ca makerlab@uottawa.ca] will also be able to give you the password. |