Here is what I did:
Looked at the kernel version to get the proper driver
Code: Select all
uname -a
Kernel: 3.18.7-v7+ #755Code: Select all
wget https://dl.dropboxusercontent.com/u/80256631/8188eu-20150212.tar.gz
tar -zxvf 8188eu-20150212.tar.gz
sudo install -p -m 644 8188eu.ko /lib/modules/3.18.7-v7+/kernel/drivers/net/wireless
sudo insmod /lib/modules/3.18.7-v7+/kernel/drivers/net/wireless/8188eu.ko
sudo depmod -a
sudo modprobe 8188euCode: Select all
auto lo
iface lo inet loopback
iface eth0
allow-hotplug wlan0
iface wlan0 inet manual
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcpCode: Select all
ctrl_interfaces=DIR=/var/run/wpa_supplicant GROUP=netdev
network={
ssid="my ssid name"
psk="my ssid password"
}Code: Select all
ifconfig
eth0: (I get the normal information)
lo (I get the normal information)
wlan0 Link encap:Ethernet HWaddr c4:6e:1f:24:ca:83
UP BROADCAST MULTICAT MTU:1500
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)Just to mention that if I install this wifi dongle on my Windows box, it works just fine. That tells me the hardware device is good.
I'm at a loss right now and would appreciate some assistance.
Thanks