Recently I’ve been configuring Raspberry Pi B+ for Wireless connection. I’ve configured everything in:
/etc/network/interfaces and
/etc/wpa_supplicant/wpa_supplicant.conf
I was trying to connect to hidden network, but without success.
In Raspberry I installed additional WiFi dongle – TP Link TL-WN725N, adapter was successfully recognized as wlan0 interface without any problem, I was also able to scan wireless networks around me – great but why I can’t connect to my network? 🙁
After some time of research, I found this topic:
https://www.raspberrypi.org/forums/viewtopic.php?f=28&t=62371&hilit=rtl8188eus&start=1100
Raspbian has drivers for WiFi adapter but in my case TP Link adapter was in version V2, so additional drivers are required for working properly. Thanks to MrEngman post I was able to download additional drivers ( I’ve created also backup of this script ) – you can find it here:
https://dl.dropboxusercontent.com/u/80256631/install-wifi.tar.gz
https://www.dropbox.com/s/i8pnidjr9517lf4/install-wifi.tar.gz?dl=0 (mirror)
To install this on you Raspberry Pi type:
wget https://dl.dropboxusercontent.com/u/80256631/install-wifi.tar.gz tar xzf install-wifi.tar.gz
Then run:
./install-wifi
To find out more options of this script run command
./install-wifi -h
After installation reboot your raspberry and everything should works fine 🙂