There are two versions of this wifi adaptor. V1 has the driver included in most images, V2 requires you to download and install a driver as it is not included in the Linux images.
It appears you probably have V2 and need to download and install the driver. You can determine the wifi version you have if you use command
lsusb. This will list the WN725N V2 as
Code: Select all
Bus 001 Device 004: ID 0bda:8179 Realtek Semiconductor Corp.
The important info is the ID 0bda:8179.
If it shows this you need to download the driver. If you use a recent version of Raspbian there are precompiled versions available.
Precompiled versions of the driver are available for Raspbian as follows
for 3.6.11+ #538, #541, #545, #551 and #557 use 8188eu-20130830.tar.gz
for 3.6.11+ #524, #528 or #532 use 8188eu-20130815.tar.gz
for 3.6.11+ #371 up to #520 use 8188eu-20130209.tar.gz
Use command
uname -a to determine the version you have e.g.
Code: Select all
pi@raspberrypi ~ $ uname -a
Linux raspberrypi 3.6.11+ #551 PREEMPT Mon Sep 30 14:42:10 BST 2013 armv6l GNU/Linux
pi@raspberrypi ~ $
Download and install the driver using the commands
Code: Select all
wget https://dl.dropboxusercontent.com/u/80256631/8188eu-2013xxyy.tar.gz <--set data code for driver version above
tar -zxvf 8188eu-2013xxyy.tar.gz <--set data code for driver version above
sudo install -p -m 644 8188eu.ko /lib/modules/3.6.11+/kernel/drivers/net/wireless
sudo insmod /lib/modules/3.6.11+/kernel/drivers/net/wireless/8188eu.ko
sudo depmod -a
Hope this is helpful
MrEngman
Simplicity is a prerequisite for reliability. Edsger W. Dijkstra
Please post ALL technical questions on the forum. Please Do Not send private messages.