<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[SoliForum - 3D Printing Community — Wifi not working]]></title>
		<link>https://www.soliforum.com/topic/12858/wifi-not-working/</link>
		<atom:link href="https://www.soliforum.com/feed/rss/topic/12858/" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Wifi not working.]]></description>
		<lastBuildDate>Sat, 13 Feb 2016 00:56:06 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Wifi not working]]></title>
			<link>https://www.soliforum.com/post/116382/#p116382</link>
			<description><![CDATA[<p>Okay I solved my problem above but it wasn&#039;t straight forward. </p><p>I ended up updating the firmware to the latest firmware. <br /></p><div class="codebox"><pre><code>pi@atlas3d ~ $ uname -a
Linux atlas3d 4.1.17-v7+ #838 SMP Tue Feb 9 13:15:09 GMT 2016 armv7l GNU/Linux</code></pre></div><p>Then I updated gcc to be as good as or better than the Pi2 compiler. This took a while. Original gcc complier is for Pi1 so it won&#039;t let you build a driver. <br /></p><div class="codebox"><pre><code>pi@atlas3d ~ $ cat /proc/version
Linux version 4.1.17-v7+ (dc4@dc4-XPS13-9333) (gcc version 4.8.3 20140303 (prerelease) (crosstool-NG linaro-1.13.1+bzr2650 - Linaro GCC 2014.03) ) #838 SMP Tue Feb 9 13:15:09 GMT 2016
pi@atlas3d ~ $ gcc --version
gcc (Raspbian 4.8.4-1) 4.8.4
Copyright (C) 2013 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.</code></pre></div><p>Then went here:<br /><a href="https://www.raspberrypi.org/forums/viewtopic.php?p=462982">https://www.raspberrypi.org/forums/view … p?p=462982</a><br />and got the latest wifi driver for the dongle that comes with the kit. Note there are two versions of this wifi dongle. Mine was 0bda:8179 so I was good. </p><p>Installed it and wlan0 is now up and working.</p>]]></description>
			<author><![CDATA[null@example.com (mp3pete)]]></author>
			<pubDate>Sat, 13 Feb 2016 00:56:06 +0000</pubDate>
			<guid>https://www.soliforum.com/post/116382/#p116382</guid>
		</item>
		<item>
			<title><![CDATA[Re: Wifi not working]]></title>
			<link>https://www.soliforum.com/post/116324/#p116324</link>
			<description><![CDATA[<p>I keep getting the same error as well. I&#039;m using the new Raspberry Pi 2 B 1GB:<br />pi@atlas3d ~ $ sudo ifdown wlan0<br />pi@atlas3d ~ $ sudo ifup wlan0<br />wpa_supplicant: /sbin/wpa_supplicant daemon failed to start<br />run-parts: /etc/network/if-pre-up.d/wpasupplicant exited with return code 1<br />Failed to connect to wpa_supplicant - wpa_ctrl_open: No such file or directory<br />wpa_supplicant: /sbin/wpa_cli daemon failed to start<br />run-parts: /etc/network/if-up.d/wpasupplicant exited with return code 1</p><p>dmsg shows the wifi dongle<br />[&nbsp; 133.411465] usb 1-1.3: USB disconnect, device number 4<br />[&nbsp; 161.814448] usb 1-1.2: new high-speed USB device number 5 using dwc_otg<br />[&nbsp; 161.915783] usb 1-1.2: New USB device found, idVendor=0bda, idProduct=8179<br />[&nbsp; 161.915810] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3<br />[&nbsp; 161.915827] usb 1-1.2: Product: 802.11n NIC<br />[&nbsp; 161.915843] usb 1-1.2: Manufacturer: Realtek<br />[&nbsp; 161.915859] usb 1-1.2: SerialNumber: [XXXXXXXXXXX]</p><p>Here&#039;s my wpa_supplicant.conf file:<br />ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev<br />update_config=1</p><p>network={<br />ssid=&quot;PeterNET&quot;<br />psk=&quot;xxxxxxxxxxxxx&quot;<br />proto=RSN<br />key_mgmt=WPA-PSK<br />pairwise=TKIP<br />group=TKIP WEP104 WEP40<br />auth_alg=OPEN<br />}</p><p>Here&#039;s my /etc/network/interfaces file:<br />auto lo</p><p>iface lo inet loopback<br />iface eth0 inet dhcp</p><p>allow-hotplug wlan0<br />iface wlan0 inet manual</p><p>wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf<br />iface default inet dhcp</p><p>auto wlan0</p><br /><br /><p>pi@atlas3d ~ $ ifconfig<br />eth0&nbsp; &nbsp; &nbsp; Link encap:Ethernet&nbsp; HWaddr b8:27:eb:a1:0e:f5<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; inet addr:192.168.2.109&nbsp; Bcast:192.168.2.255&nbsp; Mask:255.255.255.0<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; UP BROADCAST RUNNING MULTICAST&nbsp; MTU:1500&nbsp; Metric:1<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; RX packets:127 errors:0 dropped:0 overruns:0 frame:0<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; TX packets:110 errors:0 dropped:0 overruns:0 carrier:0<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; collisions:0 txqueuelen:1000<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; RX bytes:14362 (14.0 KiB)&nbsp; TX bytes:16664 (16.2 KiB)</p><p>lo&nbsp; &nbsp; &nbsp; &nbsp; Link encap:Local Loopback<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; inet addr:127.0.0.1&nbsp; Mask:255.0.0.0<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; UP LOOPBACK RUNNING&nbsp; MTU:65536&nbsp; Metric:1<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; RX packets:8 errors:0 dropped:0 overruns:0 frame:0<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; TX packets:8 errors:0 dropped:0 overruns:0 carrier:0<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; collisions:0 txqueuelen:0<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; RX bytes:1104 (1.0 KiB)&nbsp; TX bytes:1104 (1.0 KiB)</p><p>pi@atlas3d ~ $ lsusb<br />Bus 001 Device 002: ID 0424:9514 Standard Microsystems Corp.<br />Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub<br />Bus 001 Device 003: ID 0424:ec00 Standard Microsystems Corp.<br />Bus 001 Device 004: ID 0bda:8179 Realtek Semiconductor Corp.</p><p>pi@atlas3d ~ $ sudo iwlist wlan0 scan<br />wlan0&nbsp; &nbsp; &nbsp;Interface doesn&#039;t support scanning.</p><p>pi@atlas3d ~ $ cat /proc/cpuinfo | grep Hardware<br />Hardware&nbsp; &nbsp; &nbsp; &nbsp; : BCM2709</p><p>pi@atlas3d ~ $ lsmod<br />Module&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Size&nbsp; Used by<br />snd_bcm2835&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 18649&nbsp; 0<br />snd_pcm&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 73475&nbsp; 1 snd_bcm2835<br />snd_seq&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 53078&nbsp; 0<br />snd_seq_device&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 5628&nbsp; 1 snd_seq<br />snd_timer&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 17784&nbsp; 2 snd_pcm,snd_seq<br />snd&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 51038&nbsp; 5 snd_bcm2835,snd_timer,snd_pcm,snd_seq,snd_seq_device<br />uio_pdrv_genirq&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;2958&nbsp; 0<br />uio&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;8119&nbsp; 1 uio_pdrv_genirq</p><p>Here&#039;s iwconfig:<br />pi@atlas3d ~ $ iwconfig<br />lo&nbsp; &nbsp; &nbsp; &nbsp; no wireless extensions.</p><p>eth0&nbsp; &nbsp; &nbsp; no wireless extensions.</p><br /><p>Not sure what else I can do. I&#039;m running WPA2 on my router and everything else connects. With Ethernet I&#039;ve updated to the latest scanning software giving me a Network screen that show&#039;s nothing in the dropdown for networks. If I use Hidden it also fails to work. </p><p>Any help appreciated.</p>]]></description>
			<author><![CDATA[null@example.com (mp3pete)]]></author>
			<pubDate>Fri, 12 Feb 2016 01:52:15 +0000</pubDate>
			<guid>https://www.soliforum.com/post/116324/#p116324</guid>
		</item>
		<item>
			<title><![CDATA[Re: Wifi not working]]></title>
			<link>https://www.soliforum.com/post/110245/#p110245</link>
			<description><![CDATA[<p>Bill,</p><p>No problem, I&#039;m glad it is working for you now.</p><p>Uriah</p>]]></description>
			<author><![CDATA[null@example.com (hairu526)]]></author>
			<pubDate>Wed, 25 Nov 2015 18:53:54 +0000</pubDate>
			<guid>https://www.soliforum.com/post/110245/#p110245</guid>
		</item>
		<item>
			<title><![CDATA[Re: Wifi not working]]></title>
			<link>https://www.soliforum.com/post/110243/#p110243</link>
			<description><![CDATA[<p>If anyone else has this problem, it sounds very similar to a problem I had getting my wifi dongle to work with OctoPi. Here is the info I followed, I hope it helps someone else! <a href="http://www.tested.com/tech/3d-printing/464412-setting-3d-print-server-printrbot-simple-metal-using-octopi/">http://www.tested.com/tech/3d-printing/ … ng-octopi/</a></p>]]></description>
			<author><![CDATA[null@example.com (widespreaddeadhead)]]></author>
			<pubDate>Wed, 25 Nov 2015 18:21:03 +0000</pubDate>
			<guid>https://www.soliforum.com/post/110243/#p110243</guid>
		</item>
		<item>
			<title><![CDATA[Re: Wifi not working]]></title>
			<link>https://www.soliforum.com/post/110193/#p110193</link>
			<description><![CDATA[<p>Hi Uriah<br />I was looking through the Atlas 3D scanner software instructions from the BYO pl and found a line missing on the network/interfaces page</p><p>&quot;Iface dfault inet&nbsp; dhcp&quot; so put that in and also had to change the dongle <br />So everything is working now (good to go) as they say over the pond.</p><p>Many thanks for your help</p>]]></description>
			<author><![CDATA[null@example.com (Mwaypilot)]]></author>
			<pubDate>Tue, 24 Nov 2015 23:08:22 +0000</pubDate>
			<guid>https://www.soliforum.com/post/110193/#p110193</guid>
		</item>
		<item>
			<title><![CDATA[Re: Wifi not working]]></title>
			<link>https://www.soliforum.com/post/110076/#p110076</link>
			<description><![CDATA[<p>When I input sudo ifup wlan0<br />I get</p><p>wpa_supplicant: /sbin/wpa_supplicant daemon failed to start<br />run-parts: /etc/network/if-if-pre-up.d/wpasupplicant exited with return code 1<br />Failed to connect to wpa_supplicant - wpa_ctrl-open: No such file or directory<br />wpa_supplicant: /sbin_cli daemon failed to start<br />run-parts: /etc/if-up.d/wpasupplicant exited with return code 1<br />Bill</p>]]></description>
			<author><![CDATA[null@example.com (Mwaypilot)]]></author>
			<pubDate>Mon, 23 Nov 2015 11:35:02 +0000</pubDate>
			<guid>https://www.soliforum.com/post/110076/#p110076</guid>
		</item>
		<item>
			<title><![CDATA[Re: Wifi not working]]></title>
			<link>https://www.soliforum.com/post/110073/#p110073</link>
			<description><![CDATA[<p>Hi<br />No they are not capitalised in the file its this ipad doing it every time I start a new line and I forgot to change them.<br />Bill</p>]]></description>
			<author><![CDATA[null@example.com (Mwaypilot)]]></author>
			<pubDate>Mon, 23 Nov 2015 09:02:41 +0000</pubDate>
			<guid>https://www.soliforum.com/post/110073/#p110073</guid>
		</item>
		<item>
			<title><![CDATA[Re: Wifi not working]]></title>
			<link>https://www.soliforum.com/post/110054/#p110054</link>
			<description><![CDATA[<p>Are the capitalized words in your response actually capitalized in the file?&nbsp; For example, does it say <em>Allow-hotplug wlan0</em> or does it say <em>allow-hotplug wlan0</em>?</p>]]></description>
			<author><![CDATA[null@example.com (hairu526)]]></author>
			<pubDate>Mon, 23 Nov 2015 00:55:29 +0000</pubDate>
			<guid>https://www.soliforum.com/post/110054/#p110054</guid>
		</item>
		<item>
			<title><![CDATA[Re: Wifi not working]]></title>
			<link>https://www.soliforum.com/post/110053/#p110053</link>
			<description><![CDATA[<p>When I input sudo ifdown wlan0 and sudo ifup wlan0 I get the message</p><p>/etc/network/interfaces file :7: misplaced option<br />ifup: couldn&#039;t read interfaces file &quot;/etc/network/interfaces&quot;</p><p>So I look at interface and see</p><p>auto lo<br />Iface lo inet loopback<br />Iface eth0 inet dhcp<br />Allow-hotplug wlan0<br />Iface wlan0 inet manual<br />Auto wlan0<br />Wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf</p><p>So I think there is something in there that shouldn&#039;t be</p><p>Bill</p>]]></description>
			<author><![CDATA[null@example.com (Mwaypilot)]]></author>
			<pubDate>Mon, 23 Nov 2015 00:47:03 +0000</pubDate>
			<guid>https://www.soliforum.com/post/110053/#p110053</guid>
		</item>
		<item>
			<title><![CDATA[Re: Wifi not working]]></title>
			<link>https://www.soliforum.com/post/110040/#p110040</link>
			<description><![CDATA[<p>Please update the file to look like the following.&nbsp; Replace MY_WIFI_NETWORK with the name of your WiFi access point, and replace MY_WIFI_PASSWORD with the password (the quotes are required).</p><div class="codebox"><pre><code>ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1

network={
    ssid=&quot;MY_WIFI_NETWORK&quot;
    psk=&quot;MY_WIFI_PASSWORD&quot;
    proto=RSN
    key_mgmt=WPA-PSK
    pairwise=TKIP
    group=TKIP WEP104 WEP40
    auth_alg=OPEN
}</code></pre></div><p>You can edit the file with nano with the following command.<br /></p><div class="codebox"><pre><code>sudo nano /etc/wpa_supplicant/wpa_supplicant.conf</code></pre></div><p>Press CTRL+X, save the file and run the following to connect the WiFi.<br /></p><div class="codebox"><pre><code>sudo ifdown wlan0
sudo ifup wlan0</code></pre></div><br /><p>After a while if you run the following command, you should see an IP address associated with wlan0.<br /></p><div class="codebox"><pre><code>ifconfig</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (hairu526)]]></author>
			<pubDate>Sun, 22 Nov 2015 18:44:45 +0000</pubDate>
			<guid>https://www.soliforum.com/post/110040/#p110040</guid>
		</item>
		<item>
			<title><![CDATA[Re: Wifi not working]]></title>
			<link>https://www.soliforum.com/post/109970/#p109970</link>
			<description><![CDATA[<p>Uriah this is what I get when entering </p><p>Ctrl_interface=DIR=/var/run/wpa_supplicant Group=netdev<br />update_config=1<br />Network={<br />scan_ssid=1<br />proto=wpa<br />key_mgnt=wpa-psk<br />pairwise=CCMP TKIP<br />group=CCMP TKIP<br />}</p><p>Where do I put ssid &quot;BTHub5-NM2M<br />Psk :&nbsp; 52xxxxxx2a<br />Cheers</p>]]></description>
			<author><![CDATA[null@example.com (Mwaypilot)]]></author>
			<pubDate>Sat, 21 Nov 2015 00:33:28 +0000</pubDate>
			<guid>https://www.soliforum.com/post/109970/#p109970</guid>
		</item>
		<item>
			<title><![CDATA[Re: Wifi not working]]></title>
			<link>https://www.soliforum.com/post/109964/#p109964</link>
			<description><![CDATA[<p>Bill,</p><p>What does it output if you type the following.<br /></p><div class="codebox"><pre><code> sudo cat /etc/wpa_supplicant/wpa_supplicant.conf  </code></pre></div><p>You need to change the psk and ssid properties to match the name of your wireless device and password.</p>]]></description>
			<author><![CDATA[null@example.com (hairu526)]]></author>
			<pubDate>Fri, 20 Nov 2015 23:23:24 +0000</pubDate>
			<guid>https://www.soliforum.com/post/109964/#p109964</guid>
		</item>
		<item>
			<title><![CDATA[Re: Wifi not working]]></title>
			<link>https://www.soliforum.com/post/109937/#p109937</link>
			<description><![CDATA[<p>When I boot up the system I can see the following in the list of operations </p><p>{....} Configuring network interfaces.....wpa-supplicant: /sbin/wpa-supplicant daemon failed to start run-parts: /etc/network/if-pre-up.d/wpasupplicant exitted with return code 1<br />Faild to connect to wpa_supplicant - wpa_ctrl_open: no such file or directory<br />wpa_supplicant: /sbin/wpa_cli daemon faild to start<br />Run-parts: /etc/network/if-up.d/wpasupplicant exited with return code 1<br />Done.</p>]]></description>
			<author><![CDATA[null@example.com (Mwaypilot)]]></author>
			<pubDate>Fri, 20 Nov 2015 18:17:35 +0000</pubDate>
			<guid>https://www.soliforum.com/post/109937/#p109937</guid>
		</item>
		<item>
			<title><![CDATA[Re: Wifi not working]]></title>
			<link>https://www.soliforum.com/post/109917/#p109917</link>
			<description><![CDATA[<p>Uriah<br />Please note the dots after some of the numbers where I have put two spaces should not be there I am working off a ipad and it put them automaticly (11. Q) example<br />Lsusb= bus 001 device 002 standard microsystems corp<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;001 linux foundation 2.0 root hub<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;003 standard microsystems corp<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 004 creative labs keyboard<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;005 pixart optical mouse<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;006 realtek semiconductor corp<br />Sudo iwlist wlan0 scan = cel 04 address 00:91:f9:44:c9:a8<br />Essid:&nbsp; BTHub5-NM2M<br />Protocol : ieee 802.11bgn<br />Mode master<br />Frequency : 2.437 GHz chan 6<br />Encription kye :on<br />Bit rate : 144 Mb/s <br />Ie: ieee 802.11 i/wpa2 version 1<br />Quality=18/100 signal level =90/100<br />Extra :fm=0003</p><p>Cat / proc/cpuinfo grep hardware = BCM2709</p><p>Lsmod = snd bcm2835. 18649. 0<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Pcm&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 73475. 1 snd bcm2835<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Seq.&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 53078. 0<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Seq dev&nbsp; &nbsp; &nbsp;5628&nbsp; &nbsp;1 snd seq<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Timer&nbsp; &nbsp; &nbsp; &nbsp; 17784. 2 snd pcm, snd seq<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Snd.&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 51038 5. Snd bcm2835, snd timer, snd pcm, snd seq, snd seq device<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;8188cu.&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;871034. 0<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Cfg80211.&nbsp; &nbsp; &nbsp; &nbsp;386508. 1. 8188eu<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Rfkill.&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 16651. 1. cfg80211<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Evdev.&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;9950. 3<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Joydev&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 8879. 0<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Uio pdrv genirg 2958. 0<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Uio.&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;8119. 1. Uio pdrv genirg</p><p>When I try to config from the desktop I get the message<br />&nbsp; &quot; could not get status from wpa-supplicant</p><p>It all seem as if this wpa-supplicant is missing<br />Bill</p>]]></description>
			<author><![CDATA[null@example.com (Mwaypilot)]]></author>
			<pubDate>Fri, 20 Nov 2015 12:04:20 +0000</pubDate>
			<guid>https://www.soliforum.com/post/109917/#p109917</guid>
		</item>
		<item>
			<title><![CDATA[Re: Wifi not working]]></title>
			<link>https://www.soliforum.com/post/109834/#p109834</link>
			<description><![CDATA[<p>Hi Uriah wifi config tool if thats the one on the desktop it cannot find any details <br />Im using a pi 2+ <br />I ran the comands like you said but loads of stuff but when I ran the second line for scan it is finding a modem but not mine so the dongle must be working<br />The one it is finding is a British Telecom hot spot which actually is my modem but for public use my side of the modem use a different sisd<br />So how do I conf to search for mine<br />Cheers<br />Bill</p>]]></description>
			<author><![CDATA[null@example.com (Mwaypilot)]]></author>
			<pubDate>Thu, 19 Nov 2015 13:47:05 +0000</pubDate>
			<guid>https://www.soliforum.com/post/109834/#p109834</guid>
		</item>
	</channel>
</rss>
