EDIT: I should have mentioned this, but I am running the latest raspbian provided via NOOBS, all repositories and packages have been updated.
first, I went through every step from this sticky post: viewtopic.php?f=28&t=44044. I happened to go through all those steps prior to reading it but went through them again for good measure before I posted.
Basically, this seems to be the result I am getting when trying to bring up the wifi module:
here is my /etc/network/interfaces:~ $ sudo ifdown wlan0 && sudo ifup wlan0
ioctl[SIOCSIWAP]: Operation not permitted
ioctl[SIOCSIWENCODEEXT]: Invalid argument
ioctl[SIOCSIWENCODEEXT]: Invalid argument
Code: Select all
auto lo
iface lo inet loopback
auto eth0
allow-hotplug eth0
iface eth0 inet manual
auto wlan0
allow-hotplug wlan0
iface wlan0 inet manual
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet static
address 192.168.0.7
netmask 255.255.255.0
gateway 192.168.0.1
Code: Select all
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
ssid="two roads"
psk="my_pass_code"
proto=RSN
key_mgmt=WPA-PSK
pairwise=TKIP
auth_alg=OPEN
}
Code: Select all
Bus 001 Device 002: ID 0424:9512 Standard Microsystems Corp.
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 003: ID 0424:ec00 Standard Microsystems Corp.
Bus 001 Device 004: ID 05e3:0608 Genesys Logic, Inc. USB-2.0 4-Port HUB
Bus 001 Device 005: ID 0bda:8176 Realtek Semiconductor Corp. RTL8188CUS 802.11n WLAN Adapter
Bus 001 Device 006: ID 046d:c31c Logitech, Inc. Keyboard K120 for BusinessCode: Select all
Module Size Used by
cfg80211 462846 0
rfkill 22347 2 cfg80211
bcm2708_wdog 3894 1
snd_bcm2835 21149 0
snd_pcm 90778 1 snd_bcm2835
snd_seq 61097 0
snd_seq_device 7209 1 snd_seq
snd_timer 23007 2 snd_pcm,snd_seq
snd 66325 5 snd_bcm2835,snd_timer,snd_pcm,snd_seq,snd_seq_device
evdev 11000 2
joydev 9766 0
8192cu 569561 0
uio_pdrv_genirq 3666 0
uio 9897 1 uio_pdrv_genirqhttps://www.adafruit.com/products/814
what is going on here? This chipset allegedly works out of the box, but that doesn't seem to be the case for me. Help a helpless out please.