I had the same issue with my copy. I discovered that by default the wifi is turned
off, but I managed to get it turned on and working well.
There are several things I did to get it working, one was to configure wlan0 in
/etc/network/interfaces by adding the following lines:
=====================
allow-hotplug wlan0
iface wlan0 inet dhcp
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
Next, I edited the file /etc/rc.local and added three lines above the “exit” line,
which were:
=====================
cd /etc/network
cat interfaces.d/wlan >> interfaces
ifup wlan0
Lastly, I went into /etc/wpa_supplicant and created the wpa_supplicant.conf file,
adding in the following three lines:
=====================
country=US
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
You may have to change the country code, if you aren’t in the US.
Now you are set to add in your network info by doing the following:
edit the wpa_supplicant.conf file by typing:
wpa_passphrase (your ssid) >> wpa_supplicant.conf [Enter]
(your matching password) [Enter]
Now edit the wpa_supplicant.conf file and between the ssid line and psk line add
the following 5 lines:
=====================
key_mgmt=WPA-PSK
scan_ssid=1
proto=RSN
pairwise= CCMP TKIP
group=CCMP TKIP
When you’re done, your wpa_supplicant.conf file should look something like this:
country=US
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
reading passphrase from stdin
network={
ssid=“your_ssid”
key_mgmt=WPA-PSK
scan_ssid=1
proto=RSN
pairwise=CCMP TKIP
group=CCMP TKIP
#psk=“XXXXXXXX”
psk=dd033e0860063d611b39e0f602e1c6d64ca95c9354c90e0ce0f85aea468104bc
}
Now, to bring the wifi online, type ifup wlan0 [Enter], and you should be good
to go
I hope this helps you with your wifi issue.