-
Notifications
You must be signed in to change notification settings - Fork 1
Odroid Wifi Module 4
Sean D Matthews edited this page Sep 21, 2016
·
10 revisions
We use the Odroid Wifi Module 4 to connect a computer directly to the GoPro Hero 4 Black that's mounted to the outside of the sub. However, since the computer is running Ubuntu server, it does not have run network-manager like the desktop version, and does not automatically bring up the wifi module on the wlan0 interface. Connect to an existing wifi network with the following instructions:
- Ensure that the computer has internet access
apt-get install wpasupplicant
ip link set wlan0 up
-
wpa_passphrase <SSID> <password>
where SSID is the name of the wireless network and password is the network's password - Copy the resultant string of characters from
psk=...
- Add the following interface to your /etc/network/interfaces file:
auto wlan0
iface wlan0 inet dhcp
wpa-ssid <SSID>
wpa-psk <copied psk string>
The interface will come up when the computer boots. To start it immediately, perform the command ifup wlan0
.