Table of Contents

wifi rpi

configure key

Using the WNA3100M netgear adapter

nano /etc/wpa_supplicant/wpa_supplicant.conf
replace
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
with
network={
    ssid="your_ssid"
    scan_ssid=1
    psk="your_password"
    proto=RSN
    key_mgmt=WPA-PSK
    pairwise=CCMP
    auth_alg=OPEN
}
reboot the rpi

knowing that :

sources

http://www.raspberrypi.org/phpBB3/viewtopic.php?f=28&t=30348 http://databoyz.wordpress.com/tag/how-to-setup-network-and-wpa_supplicant-conf-file-on-raspberry-pi/

disable wifi

Open the config.txt file with nano:

sudo nano /boot/config.txt
Find the following line:
# Additional overlays and parameters are documented /boot/overlays/README
And add these two lines under it:
dtoverlay=disable-wifi
dtoverlay=disable-bt

source

https://raspberrytips.com/disable-wifi-raspberry-pi/