I deleted my wpa_supplicant files. (And feel really stupid, for numerous reasons). The bottom line is that at this point, I can't get my Pi onto my network via the WiFi. I thought that if I did
Code: Select all
sudo apt-get remove wpa_supplicantCode: Select all
sudo apt-get install wpa_supplicantAlas, files are still missing. So anyway, I am looking for some guidance. I've included a lot of outputs of various configs and commands to help with troubleshooting. I KNOW that I am missing some wpa_supplicant things, and I KNOW that some symlinks are broken, but I can't figure out how to get the files back much less how to re-establish the symlinks once I have those files back. I've been googling and browsing various forums for the last two days before posting a request for help. I'm almost to the point of re-installing the OS and building from the ground up, but I am VERY hesitant to do that for other reasons. I've masked/obfuscated some of the values for security purposes. Thanks for any suggestions that you can offer.
OS Version
Code: Select all
$ uname -a
Linux <hostname> 3.18.7+ #755 PREEMPT Thu Feb 12 17:14:31 GMT 2015 armv6l GNU/LinuxCode: Select all
cat zjcs_lsmod.log
Module Size Used by
iptable_filter 1706 0
ip_tables 12393 1 iptable_filter
x_tables 18646 2 ip_tables,iptable_filter
w1_therm 3325 0
i2c_dev 6709 8
i2c_bcm2708 6200 0
8192cu 569633 0
w1_gpio 4502 0
wire 31280 2 w1_gpio,w1_therm
cn 5756 1 wire
uio_pdrv_genirq 3666 0
uio 9897 1 uio_pdrv_genirq
Code: Select all
cat zjcs_lsusb.log
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 7392:7811 Edimax Technology Co., Ltd EW-7811Un 802.11n Wireless Adapter [Realtek RTL8188CUS]
Code: Select all
cat zjcs_interfaces.log
auto lo
iface lo inet loopback
iface eth0 inet static
address 999.999.999.999
netmask 255.255.255.0
network 999.999.999.999
broadcast 999.999.999.999
gateway 999.999.999.999
allow-hotplug wlan0
auto wlan0
iface wlan0 inet dhcp
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcpCode: Select all
cat zjcs_ifconfig.log
eth0 Link encap:Ethernet HWaddr b8:27:eb:b4:26:90
inet addr:999.999.999.999 Bcast:999.999.999.999 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:4330 errors:0 dropped:782 overruns:0 frame:0
TX packets:1548 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:282440 (275.8 KiB) TX bytes:210789 (205.8 KiB)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:65536 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
wlan0 Link encap:Ethernet HWaddr 74:da:38:0e:1f:b4
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)Code: Select all
cat zjcs_iwconfig.log
wlan0 unassociated Nickname:"<WIFI@REALTEK>"
Mode:Auto Frequency=2.412 GHz Access Point: Not-Associated
Sensitivity:0/0
Retry:off RTS thr:off Fragment thr:off
Power Management:off
Link Quality:0 Signal level:0 Noise level:0
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:0 Missed beacon:0Code: Select all
cd /etc/wpa_supplicant/ && ls -lt
total 8
-rw-r--r-- 1 root root 267 Jul 19 15:37 wpa_supplicant.conf
-rw-r--r-- 1 root root 51 Jul 18 18:45 example.confCode: Select all
network={
ssid="<ssid>"
#psk="pwd"
psk=<maskedpwd>
proto=RSN
key_mgmt=WPA-PSK
pairwise=CCMP TKIP
group=CCMP TKIP
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
}