WiFi does not work with volumio-2.032-2016-11-27-cuboxi.img and volumio-2.029-2016-11-18-cuboxi.img
I tried volumio-for-cubox-coming-t4580-40.html
and wlan-device-with-volumio-029-2016-cuboxi-img-t5212-10.html
threads suggestions and it didn’t help
Could I kindly ask to fix it?
Please stop opening new threads for the same issue. Cubox and WiFi is WIP at the moment, 20 more threads won’t change that.
I find a work around, and it works on my Cubox-i4pro. Do the following steps on your Cubox as root.
-
Download brcmfmac4330-sdio.txt file from the following link and put it to /lib/firmware/brmc
wget -O brcmfmac4330-sdio.txt “http://forum.solid-run.com/download/file.php?id=52&sid=ae54e543af0e8a819b444575b0efb548” -
Restart cubox, in order to reload the driver.
-
After restart, do the following command, you should see wlan0
iw dev -
Check connection status, should show not connected.
iw wlan0 link -
Create a WiFi password file,
wpa_passphrase [SSID] [WiFi_Password] > /etc/wpa_supplicant/wpa_supplicant.conf -
Connect to WiFi
/sbin/wpa_supplicant -B -i wlan0 -c /etc/wpa_supplicant/wpa_supplicant.conf -
To confirm it connected to your wif, you should see the SSID you provided
iw wlan0 link -
Obtain IP address
dhcpdc5 wlan0 -
To confirm wlan0 has IP.
ifconfig wlan0
In order to make it work during bootup:
systemctl enable rc.local
add the following before exit 0 in /etc/rc.local
sleep 5
/sbin/wpa_supplicant -B -i wlan0 -c /etc/wpa_supplicant/wpa_supplicant.conf
/sbin/dhcpdc5 wlan0
You can reference this page:
linuxcommando.blogspot.ca/2013/1 … twork.html
Hope this help.