Hello Devz,
I received my new Raspberry Pi 3 today with its integrated Wi-Fi, and I was wondering how to setup the ip address in a permanent way with console only.
1 | sudo nano /etc/network/interfaces |
Then find a line containing “wlan0” (zero) and replace the text by this:
1 2 3 4 5 6 | allow-hotplug wlan0 auto wlan0 iface wlan0 inet dhcp wpa-ssid "ssid" wpa-psk "password" |
Enjoy!