Page 1 of 1

wifi

Posted: Fri Sep 13, 2019 3:58 pm
by henrique_mg
I put a usb wifi but do not know enabling
I can only access by cable

Re: wifi

Posted: Sat Sep 14, 2019 12:55 pm
by Realizator
Henrique_mg, you need to configure your network settings.
Insert micro SD card from your StewreoPi to the cardreader of your computer. You will see new disk, called "BOOT". Open it, find "stereopi.conf" file, and put settings according to this guide from our Wiki.

Cite from wiki:
you need to fill 3 parameters to enable WiFi
wifi_iface = wlan0
wifi_ssid=my-access-point-name
wifi_psk=mypassword

Replace 'my-access-point-name' and 'mypassword' with the name and password of your WiFi access point.

Re: wifi

Posted: Mon Sep 16, 2019 6:57 pm
by henrique_mg
the problem should be with my 802.11n wifi usb adapter that should not be found or configured

Re: wifi

Posted: Mon Sep 16, 2019 7:11 pm
by Realizator
What is the model of your WiFi adapter?

Re: wifi

Posted: Mon Sep 16, 2019 9:22 pm
by henrique_mg
Realtek RTL8188FTV Wireless LAN 802.11n USB 2.0 Network Adapter

Re: wifi

Posted: Tue Sep 17, 2019 6:15 am
by Realizator
Google says this chipset is not supported by Raspbian out of the box. You may either use another WiFi dongle, or install drivers for this module. It is described, for example, in this thread:
https://www.raspberrypi.org/forums/view ... 82#p462982

Re: wifi

Posted: Tue Sep 17, 2019 1:21 pm
by henrique_mg
console root$ sudo wget http://downloads.fars-robotics.net/wifi ... stall-wifi -O /usr/bin/install-wifi
/usr/bin/install-wifi: Read-only file system

Re: wifi

Posted: Tue Sep 17, 2019 1:44 pm
by Realizator
henrique_mg wrote:
Tue Sep 17, 2019 1:21 pm
console root$ sudo wget http://downloads.fars-robotics.net/wifi ... stall-wifi -O /usr/bin/install-wifi
/usr/bin/install-wifi: Read-only file system
Looks like you are using SLP image. It has read-onlu file system for safety reasons (as it is industrial-like solution).
You can find details here in our wiki.
To unlock filesystem you can:
1. Use this code:

Code: Select all

sudo mount -o rw,remount /
2. If you can access admin panel over network, go to the file manager icon, and press "Unlock filesystem" link at the top of the page.

Both methods gives you the same result.