WIFI radio

Moderators: adafruit_support_bill, adafruit

Forum rules
Talk about Adafruit Raspberry Pi® accessories! Please do not ask for Linux support, this is for Adafruit products only! For Raspberry Pi help please visit: http://www.raspberrypi.org/phpBB3/
Locked
jrprogrammer
 
Posts: 2
Joined: Tue Oct 08, 2013 4:41 pm

WIFI radio

Post by jrprogrammer »

It works great BUT, I switched to a different router. How can I STOP the auto start and change things?
Thanks,
Jim

mtbf0
 
Posts: 1645
Joined: Sat Nov 10, 2007 12:59 am

Re: WIFI radio

Post by mtbf0 »

assuming that all you want is to change the ssid and passphrase for your router, just plug in a keyboard and monitor and edit /etc/network/interfaces.

change

Code: Select all

iface wlan0 inet dhcp
    wpa-ssid "ssid"
    wpa-psk "password"
to

Code: Select all

iface wlan0 inet dhcp
    wpa-ssid "new-ssid"
    wpa-psk "new-password"
or, if you enabled ssh, you could plug in an ethernet cable, (we are talking about a model b, aren't we?), and ssh in to edit the file.

or you could just pop out the sd card, stick it in a linux machine, log in as root, and edit the file. if you do this make sure you use the path to the sd card, so you don't wind up screwing up the configuration of the host system.

Locked
Forum rules
Talk about Adafruit Raspberry Pi® accessories! Please do not ask for Linux support, this is for Adafruit products only! For Raspberry Pi help please visit: http://www.raspberrypi.org/phpBB3/

Return to “Adafruit Raspberry Pi® accessories”