ติดตั้ง Driver Wireless lan TP-Link TL-WN723N ให้กับ RPi

Driver Wireless lan TP-Link TL-WN723N
Credit : [http://www.raspberrypi.org/phpBB3/viewtopic.php?p=462982#p462982]



rtl8188eu drivers for 3.10.25+ (includes driver 8188eu.ko, firmware file rtl8188eufw.bin and README)

CODE: SELECT ALL
3.10.25+ #616 - 8188eu-20131223.tar.gz

Link to driver files - use date code from list above to download rquired driver
CODE: SELECT ALL

https://dl.dropboxusercontent.com/u/80256631/8188eu-2013xxyy.tar.gz


NOTE: If updating firmware revisions, say from 3.10.23+ to 3.10.24+, and they use the same driver, in this case 8188eu-20131209.tar.gz, you will still need to reinstall the driver on the newer version of Linux, even though the driver has not changed as it will be loaded from a different director by the new Linux revision and you need to install it in the new directory.

Download and install the driver, and firmware if required, with the following commands
CODE: SELECT ALL

# wget https://dl.dropboxusercontent.com/u/80256631/8188eu-2013xxyy.tar.gz
<--set above="" code="" data="" driver="" for="" p="" version="">
# tar -zxvf 8188eu-2013xxyy.tar.gz
<--set above="" code="" data="" driver="" for="" p="" version="">
# run following two commands only if using version 3.10.xx+, not required for 3.6.11+

cat README <--check adding="" file="" for="" p="" readme="">
# cp rtl8188eufw.bin /lib/firmware/rtlwifi 

<--firmware already="" if="" installed="" not="" p="">
# install -p -m 644 8188eu.ko /lib/modules/$(uname -r)/kernel/drivers/net/wireless
# insmod /lib/modules/$(uname -r)/kernel/drivers/net/wireless/8188eu.ko

# depmod -a


installed Wicd-curses just type:

Credit [http://www.raspyfi.com/wi-fi-on-raspberry-pi-a-simple-guide/]


# apt-get update
# apt-get install wicd-curses

Ok, now we are ready to start, type:

# wicd-curses

You’ll get a list of the wireless network found by the Raspberry PI


Since I got some reports of Wi-Fi dongle not being recognized, this is how you can sort it out:
Enter in wicd-curses,

# wicd-curses

then press P (that stands for preferences). You’ll find that there’s a field called wireless interface, which is empty. Just write wlan0 in it. Then F10 to save.




Edit /etc/network/interfaces 

# nano /etc/network/interfaces 

Edit

auto lo

iface lo inet loopback
iface eth0 inet dhcp

allow-hotplug wlan0
iface wlan0 inet dhcp

wpa-ssid "network-name"
wpa-psk  "network-password"


Comments