====== Différences ======
Cette page vous affiche les différences entre la révision choisie et la version actuelle de la page.
raspberry_pi:wifi [2014/03/26 16:22] r.doiteau créée |
raspberry_pi:wifi [2019/05/11 14:35] (Version actuelle) |
||
---|---|---|---|
Ligne 1: | Ligne 1: | ||
+ | |||
+ | ====== | ||
+ | TP-Link TL-WN725N version 2 in Raspbian 2014-01-07-wheezy-raspbian with kernel 3.10.25+ ====== | ||
+ | |||
+ | <code> | ||
+ | wget -O 8188eu_31024_614.zip http://www.mendrugox.net/downloads/14 | ||
+ | unzip 8188eu_31024_614.zip | ||
+ | sudo mv 8188eu.ko /lib/modules/`uname -r`/kernel/drivers/net/wireless | ||
+ | sudo chown root:root /lib/modules/`uname -r`/kernel/drivers/net/wireless/8188eu.ko | ||
+ | sudo mv rtl8188eufw.bin /lib/firmware/rtlwifi/ | ||
+ | sudo chown root:root /lib/firmware/rtlwifi/rtl8188eufw.bin | ||
+ | sudo depmod -a | ||
+ | sudo modprobe 8188eu | ||
+ | </code> | ||
+ | Edit /etc/netwok/interfaces like this and add your networks SSID and password: | ||
+ | <code> | ||
+ | auto lo | ||
+ | |||
+ | iface lo inet loopback | ||
+ | iface eth0 inet dhcp | ||
+ | |||
+ | allow-hotplug wlan0 | ||
+ | auto wlan0 | ||
+ | |||
+ | iface wlan0 inet dhcp | ||
+ | wpa-ssid "YOUR-NETWORK-SSID" | ||
+ | wpa-psk "YOUR-PASSWORD" | ||
+ | </code> | ||
+ | Then reboot your Raspberry Pi and it should connect to your wifi network automatically. You should see the wlan0 device when running ifconfig: | ||
+ | <code> | ||
+ | $ ifconfig | ||
+ | wlan0 Link encap:Ethernet HWaddr a0:f3:c1:14:53:ca | ||
+ | inet addr:192.168.2.121 Bcast:192.168.2.255 Mask:255.255.255.0 | ||
+ | UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 | ||
+ | RX packets:96 errors:0 dropped:4 overruns:0 frame:0 | ||
+ | TX packets:21 errors:0 dropped:0 overruns:0 carrier:0 | ||
+ | collisions:0 txqueuelen:1000 | ||
+ | RX bytes:18513 (18.0 KiB) TX bytes:2746 (2.6 KiB) | ||
+ | |||
+ | </code> | ||
+ | === sources : === | ||
+ | |||
+ | |||
http://burogu.makotoworkshop.org/index.php?post/2013/04/27/TL-WN725N-v2 | http://burogu.makotoworkshop.org/index.php?post/2013/04/27/TL-WN725N-v2 | ||
+ | |||
+ | http://tech.enekochan.com/2014/02/15/tp-link-tl-wn725n-version-2-in-raspbian-2014-01-07-wheezy-raspbian-with-kernel-3-10-25/ | ||
+ | |||
+ |